diff --git a/.travis.yml b/.travis.yml index 2b4c290..9bc18e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ cache: before_install: - mkdir -p ~/.nvm/versions - source ~/.nvm/nvm.sh && nvm install 0.12.2 - - mkdir travis-phantomjs + - mkdir -p travis-phantomjs - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 - tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs - export PATH=$PWD/travis-phantomjs:$PATH diff --git a/config/environment.js b/config/environment.js index f9675cf..07a3c1f 100644 --- a/config/environment.js +++ b/config/environment.js @@ -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'; }