Skip to content

Instantly share code, notes, and snippets.

@nowk
Created August 27, 2012 22:58
Show Gist options
  • Save nowk/3493135 to your computer and use it in GitHub Desktop.
Save nowk/3493135 to your computer and use it in GitHub Desktop.
Setup local ENV variables for 3rd party credentials
# ~/.bashrc
# add this line so keep .bashrc cleaner, if you don't already have it in there somewhere
[ ! -f "$HOME/.bashrc.local" ] || . "$HOME/.bashrc.local"
# ~/.bashrc.local
# you may need to create this file
export SENDGRID_USERNAME=the_sendgrid_username
export SENDGRID_PASSWORD=the_sendgrid_password
export SENDGRID_DOMAIN=the_sendgrid_domain
export AWS_ACCESS_KEY_ID=the_aws_access_key_id
export AWS_SECRET_ACCESS_KEY=the_aws_secret_access_key
export PANDA_ACCESS_KEY=the_panda_access_key
export PANDA_SECRET_KEY=the_panda_secret_key
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment