fix(env): Always use staging for now

This commit is contained in:
Ben Gotow 2015-03-06 16:55:34 -08:00
parent 86c41ca272
commit 27aa11aa60

View file

@ -13,7 +13,8 @@ OnboardingStore = Reflux.createStore
@_pageStack = [@_page]
defaultEnv = if atom.inDevMode() then 'staging' else 'production'
# For the time being, always use staging
defaultEnv = if atom.inDevMode() then 'staging' else 'staging'
atom.config.set('env', defaultEnv) unless atom.config.get('env')
@listenTo Actions.setEnvironment, @_onSetEnvironment