nowk
8/27/2012 - 10:58 PM

Setup local ENV variables for 3rd party credentials

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