Skip to content

Instantly share code, notes, and snippets.

@jakecraige
Created November 5, 2014 22:24
Show Gist options
  • Save jakecraige/03d662ede986c38a6661 to your computer and use it in GitHub Desktop.
Save jakecraige/03d662ede986c38a6661 to your computer and use it in GitHub Desktop.
/* jshint node: true */
module.exports = function (environment) {
var ENV = {
modulePrefix: 'nitrous',
environment: environment,
baseURL: '/',
locationType: 'hash',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {}
};
ENV['torii'] = {
providers: {
'google-oauth2': {
apiKey: '',
redirectUri: 'http://localhost:4200'
},
'facebook-oauth2': {
apiKey: '',
redirectUri: 'http://localhost:4200'
}
}
};
ENV['simple-auth'] = {
routeAfterAuthentication: 'dashboard',
routeIfAlreadyAuthenticated: 'dashboard'
};
ENV['cordova'] = {
// Rebuild the cordova project on file changes. Blocks the server until it's
// finished.
//
// default: false
rebuildOnChange: false,
// Run the cordova emulate command after the build is finished
//
// default: false
emulate: true,
// Which platform to build and/or emulate
//
// default: 'ios'
platform: 'ios',
// Which URL the ember server is running on. This is used when using
// live-reload that comes with the starter kit.
//
// default: 'the-device-ip:4200'
emberUrl: 'http://10.0.1.12:4200',
// Whether or not to use liveReload on the device simulator. Requires a few
// plugins to be installed that come with the starter-kit. It will cause your
// app to not boot up in the browser
//
// default: false and iOS
liveReload: {
enabled: false,
platform: 'ios'
}
};
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.contentSecurityPolicyHeader = 'Disabled-Content-Security-Policy';
}
if (environment === 'test') {
// Testem prefers this...
ENV.baseURL = '/';
ENV.locationType = 'auto';
// 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') {
}
return ENV;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment