Skip to content

Instantly share code, notes, and snippets.

@pietvanzoen
Last active August 29, 2015 14:01
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 pietvanzoen/6efcbd10e4c9882537e6 to your computer and use it in GitHub Desktop.
Save pietvanzoen/6efcbd10e4c9882537e6 to your computer and use it in GitHub Desktop.
Using ENV variables
export WIBBLE=woo
var wibble = process.env.WIBBLE;
console.log(wibble);
// => 'woo'
import os
wibble = os.environ['WIBBLE']
print wibble
# => 'woo'
wibble = ENV['WIBBLE']
print wibble
# => 'woo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment