Skip to content

Instantly share code, notes, and snippets.

@StevenTso
Last active August 29, 2015 14:15
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 StevenTso/6ca8d090b82783dcb230 to your computer and use it in GitHub Desktop.
Save StevenTso/6ca8d090b82783dcb230 to your computer and use it in GitHub Desktop.
Environmental Variables
//make sure to run 'source env.sh' or else keys will be undefined!
console.log('AWS KEY: ' + process.env.AWS_KEY);
console.log('MONGODB KEY: ' + process.env.MONGODB_KEY);
export AWS_KEY=123456789
export MONGODB_KEY=987654321
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment