Created
August 27, 2012 22:58
-
-
Save nowk/3493135 to your computer and use it in GitHub Desktop.
Setup local ENV variables for 3rd party credentials
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ~/.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