2015-02-13 07:22:32 +03:00
|
|
|
/* jshint node: true */
|
2015-10-28 14:36:45 +03:00
|
|
|
/* jscs:disable */
|
2015-02-19 03:11:42 +03:00
|
|
|
|
|
|
|
module.exports = function (environment) {
|
|
|
|
var ENV = {
|
|
|
|
modulePrefix: 'ghost',
|
|
|
|
environment: environment,
|
|
|
|
baseURL: '/',
|
2015-10-05 09:07:44 +03:00
|
|
|
locationType: 'trailing-history',
|
2015-02-19 03:11:42 +03:00
|
|
|
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
|
2015-05-13 08:27:59 +03:00
|
|
|
},
|
|
|
|
|
2015-10-18 21:17:02 +03:00
|
|
|
'ember-simple-auth': {
|
2015-05-13 08:27:59 +03:00
|
|
|
authenticationRoute: 'signin',
|
|
|
|
routeAfterAuthentication: 'posts',
|
2015-10-18 21:17:02 +03:00
|
|
|
routeIfAlreadyAuthenticated: 'posts'
|
2015-02-19 03:11:42 +03: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;
|
2016-04-13 12:44:09 +03:00
|
|
|
// Enable mirage here in order to mock API endpoints during development
|
2015-10-13 16:52:41 +03:00
|
|
|
ENV['ember-cli-mirage'] = {
|
|
|
|
enabled: false
|
|
|
|
};
|
2015-02-13 07:22:32 +03:00
|
|
|
}
|
|
|
|
|
2015-02-19 03:11:42 +03:00
|
|
|
if (environment === 'test') {
|
|
|
|
// Testem prefers this...
|
|
|
|
ENV.baseURL = '/';
|
|
|
|
ENV.locationType = 'none';
|
2015-02-13 07:22:32 +03:00
|
|
|
|
2015-02-19 03:11:42 +03:00
|
|
|
// keep test console output quieter
|
|
|
|
ENV.APP.LOG_ACTIVE_GENERATION = false;
|
|
|
|
ENV.APP.LOG_VIEW_LOOKUPS = false;
|
2015-02-13 07:22:32 +03:00
|
|
|
|
2015-02-19 03:11:42 +03:00
|
|
|
ENV.APP.rootElement = '#ember-testing';
|
|
|
|
}
|
2015-02-13 07:22:32 +03:00
|
|
|
|
2015-02-19 03:11:42 +03:00
|
|
|
return ENV;
|
2015-02-13 07:22:32 +03:00
|
|
|
};
|