initial docker setup

This commit is contained in:
GotPPay
2018-06-14 16:49:28 +02:00
parent bc80b7342e
commit b5f87f27f8
3023 changed files with 985078 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
const MODULE = 'ORDER_PROJECTS_';
export const REQUEST_ORDER_PROJECTS = MODULE + 'REQUEST_ORDER_PROJECTS';
export const RECEIVE_ORDER_PROJECTS = MODULE + 'RECEIVE_ORDER_PROJECTS';
export const REQUEST_ADD_PROJECT = MODULE + 'REQUEST_ADD_PROJECT';
export const orderProjectsTexts = {
messages : {
'INVALID_DATA' : 'Invalid data!',
'PROJECT_ADDED' : 'Project added!',
'EMPTY_VALUE' : 'The field can not be empty:',
'MAX_CHARACTERS' : 'The field can not be longer than 100 characters:'
}
}