2017-09-19 14:47:10 +00:00
|
|
|
/* eslint-env node */
|
|
|
|
|
2019-07-02 13:58:43 +00:00
|
|
|
let USE_MIRAGE = true;
|
|
|
|
|
|
|
|
if (process.env.USE_MIRAGE) {
|
|
|
|
USE_MIRAGE = process.env.USE_MIRAGE == 'true';
|
|
|
|
}
|
2018-11-01 21:19:22 +00:00
|
|
|
|
2021-12-28 14:45:20 +00:00
|
|
|
module.exports = function (environment) {
|
2017-09-19 14:47:10 +00:00
|
|
|
var ENV = {
|
|
|
|
modulePrefix: 'nomad-ui',
|
|
|
|
environment: environment,
|
|
|
|
rootURL: '/ui/',
|
|
|
|
locationType: 'auto',
|
|
|
|
EmberENV: {
|
|
|
|
FEATURES: {
|
|
|
|
// Here you can enable experimental features on an ember canary build
|
2019-10-15 18:32:58 +00:00
|
|
|
// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true
|
2017-09-19 14:47:10 +00:00
|
|
|
},
|
|
|
|
EXTEND_PROTOTYPES: {
|
|
|
|
// Prevent Ember Data from overriding Date.parse.
|
|
|
|
Date: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
APP: {
|
2020-10-15 17:32:08 +00:00
|
|
|
blockingQueries: true,
|
2022-01-14 15:11:22 +00:00
|
|
|
mirageScenario: 'smallCluster',
|
2022-01-19 16:20:00 +00:00
|
|
|
mirageWithNamespaces: true,
|
2018-07-09 19:59:40 +00:00
|
|
|
mirageWithTokens: true,
|
2020-10-15 17:32:08 +00:00
|
|
|
mirageWithRegions: true,
|
2020-12-07 14:33:49 +00:00
|
|
|
showStorybookLink: process.env.STORYBOOK_LINK === 'true',
|
2017-09-19 14:47:10 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
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['ember-cli-mirage'] = {
|
2018-11-01 21:19:22 +00:00
|
|
|
enabled: USE_MIRAGE,
|
|
|
|
excludeFilesFromBuild: !USE_MIRAGE,
|
2017-09-19 14:47:10 +00:00
|
|
|
};
|
2020-01-21 21:46:32 +00:00
|
|
|
|
|
|
|
if (process.env.STORYBOOK === 'true') {
|
|
|
|
ENV.APP.autoboot = false;
|
|
|
|
ENV.rootURL = '/';
|
|
|
|
}
|
2017-09-19 14:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (environment === 'test') {
|
|
|
|
// Testem prefers this...
|
|
|
|
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';
|
2019-03-14 02:15:25 +00:00
|
|
|
ENV.APP.autoboot = false;
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
ENV.browserify = {
|
|
|
|
tests: true,
|
|
|
|
};
|
2018-04-17 16:40:18 +00:00
|
|
|
|
|
|
|
ENV['ember-cli-mirage'] = {
|
|
|
|
trackRequests: true,
|
|
|
|
};
|
2017-09-19 14:47:10 +00:00
|
|
|
}
|
|
|
|
|
2019-03-12 23:50:57 +00:00
|
|
|
// if (environment === 'production') {
|
|
|
|
// }
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
return ENV;
|
|
|
|
};
|