mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-16 00:00:03 +01:00

Fix jQuery version in bower.json docker-compose-dev.yml starts all tools needed to run 'ember s' successfully. NGinX proxies the context broker
68 lines
1.6 KiB
JavaScript
68 lines
1.6 KiB
JavaScript
/* jshint node: true */
|
|
|
|
module.exports = function(environment) {
|
|
var ENV = {
|
|
modulePrefix: 'lab-mashup',
|
|
environment: environment,
|
|
baseURL: '/',
|
|
locationType: 'none',
|
|
EmberENV: {
|
|
FEATURES: {
|
|
// Here you can enable experimental features on an ember canary build
|
|
// e.g. 'with-controller': true
|
|
}
|
|
},
|
|
|
|
APP: {
|
|
// Here you can pass flags/options to your application instance
|
|
// when it is created
|
|
|
|
API_HOST: '',
|
|
UPDATE_RATE: 200,
|
|
SHOW_EXTENDED_VIEW: process.env.SHOW_EXTENDED_VIEW,
|
|
},
|
|
|
|
contentSecurityPolicy: {
|
|
'default-src': "'none'",
|
|
'script-src': "'self' 'unsafe-eval'",
|
|
'font-src': "'self'",
|
|
'connect-src': "'self' 192.168.99.100:80",
|
|
'img-src': "'self'",
|
|
'style-src': "'self' 'unsafe-inline'",
|
|
'media-src': "'self'"
|
|
}
|
|
};
|
|
|
|
// disable mirage
|
|
ENV['ember-cli-mirage'] = {
|
|
enabled: false
|
|
}
|
|
|
|
if (environment === 'development') {
|
|
// ENV.APP.LOG_RESOLVER = true;
|
|
// ENV.APP.LOG_ACTIVE_GENERATION = true;
|
|
// ENV.APP.LOG_TRANSITIONS = true;
|
|
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
|
|
// ENV.APP.LOG_VIEW_LOOKUPS = true;
|
|
|
|
ENV.APP.API_HOST = 'http://192.168.99.100:80';
|
|
}
|
|
|
|
if (environment === 'test') {
|
|
// Testem prefers this...
|
|
ENV.baseURL = '/';
|
|
ENV.locationType = 'none';
|
|
|
|
// keep test console output quieter
|
|
ENV.APP.LOG_ACTIVE_GENERATION = false;
|
|
ENV.APP.LOG_VIEW_LOOKUPS = false;
|
|
|
|
ENV.APP.rootElement = '#ember-testing';
|
|
}
|
|
|
|
if (environment === 'production') {
|
|
ENV.baseURL = '/simple/';
|
|
}
|
|
|
|
return ENV;
|
|
};
|