Created
January 23, 2015 11:30
-
-
Save millisami/f9e99c45f8fdf144d0fb to your computer and use it in GitHub Desktop.
Access configurable values in emberjs ember-cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# app/adapters/application.js | |
import DS from 'ember-data'; | |
import config from '../config/environment'; | |
export default DS.ActiveModelAdapter.extend({ | |
host: config.apiUrl | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (environment === 'production') { | |
ENV.apiUrl = 'http://cabbyguide.herokuapp.com/api/v1'; | |
ENV.production = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment