Last active
March 17, 2016 11:21
-
-
Save wolframkriesing/f11f19b885a6188a63c2 to your computer and use it in GitHub Desktop.
Code for the config/deps article
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 (development) { | |
console.log('just for devs'); | |
} else { | |
callTheRealThing(); | |
} |
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
const configuration = { | |
development: { host: 'localhost:3000' }, | |
stage: { host: 'stage.app.com' }, | |
production: { host: 'app.com' }, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment