Created
August 27, 2013 15:13
-
-
Save vandorjw/6354909 to your computer and use it in GitHub Desktop.
3 sections of config files.
This file contains 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
# | |
# -- DJANGO ENVIRONMENT VARIABLES -- | |
# | |
. /home/user-name/denvvars | |
# | |
# .bashrc | |
# | |
export WORKON_HOME=/var/virtualenvs | |
source /usr/local/bin/virtualenvwrapper.sh | |
. /home/user-name/denvvars | |
# | |
# envars | |
# | |
export project_SECRET_KEY=string | |
export project_DB_NAME=string | |
export project_DB_USER=string | |
export project_DB_PASS=string | |
export project_DB_HOST=string | |
export project_EMAIL_HOST=string | |
export project_EMAIL_USER=string | |
export project_EMAIL_PASS=string | |
export project_EMAIL_PORT=string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment