Add staging env

This commit is contained in:
Matthew Dillon 2015-11-05 06:47:18 -07:00
parent a072bea2a0
commit d59aa0e321

View file

@ -39,6 +39,12 @@ module.exports = function(environment) {
ENV.locationType = 'none';
}
if (environment === 'staging') {
apiURL = 'https://bactdb-test.herokuapp.com';
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;
}
if (environment === 'production') {
apiURL = 'https://bactdb.herokuapp.com';
}