Skip to content

Instantly share code, notes, and snippets.

@skwp
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skwp/0bc41973a8952652f47d to your computer and use it in GitHub Desktop.
Save skwp/0bc41973a8952652f47d to your computer and use it in GitHub Desktop.
const HOSTS = Object.freeze({
"staging": "https://something-goes-here.reverb.com",
"production": "https://reverb.com",
"development": "https://reverb.site"
});
// then in the env section:
var ENV = {
host: HOSTS[environment]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment