Skip to content

Instantly share code, notes, and snippets.

@wolframkriesing
Last active March 17, 2016 11:21
Show Gist options
  • Save wolframkriesing/f11f19b885a6188a63c2 to your computer and use it in GitHub Desktop.
Save wolframkriesing/f11f19b885a6188a63c2 to your computer and use it in GitHub Desktop.
Code for the config/deps article
if (development) {
console.log('just for devs');
} else {
callTheRealThing();
}
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