changed travis/docker setup

This commit is contained in:
lotte
2020-03-19 10:48:53 +01:00
parent c870b3d02c
commit 02c67f4ec0
29 changed files with 151 additions and 58 deletions

View File

@@ -10,7 +10,7 @@ export const environment: GlobalConfig = {
ui: new ServerConfig(
false,
'localhost',
3000,
4000,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
'/',
),

View File

@@ -0,0 +1,6 @@
import { environment as defaultEnv } from './environment.common';
import { GlobalConfig } from '../config/global-config.interface';
export const environment: GlobalConfig = {
...defaultEnv,
};

View File

@@ -0,0 +1,6 @@
import { environment as defaultEnv } from './environment.common';
import { GlobalConfig } from '../config/global-config.interface';
export const environment: GlobalConfig = {
...defaultEnv,
};

View File

@@ -68,5 +68,14 @@ export const environment: GlobalConfig = {
]
}
}
}
},
languages: [{
code: 'en',
label: 'English',
active: true,
}, {
code: 'de',
label: 'Deutsch',
active: true,
}]
};

View File

@@ -0,0 +1,14 @@
import { environment as defaultEnv } from './environment.common';
import { GlobalConfig } from '../config/global-config.interface';
import { ServerConfig } from '../config/server-config.interface';
export const environment: GlobalConfig = {
...defaultEnv,
rest: new ServerConfig(
false,
'localhost',
8080,
// NOTE: Space is capitalized because 'namespace' is a reserved string in TypeScript
'/server/api',
),
};