Add staging env
This commit is contained in:
parent
a072bea2a0
commit
d59aa0e321
1 changed files with 6 additions and 0 deletions
|
@ -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';
|
||||
}
|
||||
|
|
Reference in a new issue