Skip to content

Instantly share code, notes, and snippets.

@anteburazer
Created June 5, 2017 14:20
Show Gist options
  • Save anteburazer/d234260031d22b2a8a2162a18246abde to your computer and use it in GitHub Desktop.
Save anteburazer/d234260031d22b2a8a2162a18246abde to your computer and use it in GitHub Desktop.
function setEnvironment(configPath, environment) {
fs.writeJson(configPath, {env: environment},
function (res) {
console.log('Environment variable set to ' + environment)
}
);
}
// Set environment variable to "production"
setEnvironment('./src/config/env.json', 'production');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment