diff options
author | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-03 03:45:10 -0400 |
commit | 39a548fd2629f3b6383990264b2e331b3aea99fb (patch) | |
tree | f68c3156dad5f7814473ceff2461679ddf11a2e8 /local_settings.py.example |
Initial import for public release...
Special Note
Prior to git import, approx 90% of the code was done by Judd Vinet. Thanks Judd!
Diffstat (limited to 'local_settings.py.example')
-rw-r--r-- | local_settings.py.example | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/local_settings.py.example b/local_settings.py.example new file mode 100644 index 00000000..e2024435 --- /dev/null +++ b/local_settings.py.example @@ -0,0 +1,33 @@ +# Django settings for archlinux project. + +## Debug settings +DEBUG = False + +## Notification admins +ADMINS = ( + ('Joe Admin', 'joeadmin@example.com'), +) + +## Database settings +DATABASE_ENGINE = 'mysql' +DATABASE_NAME = 'archlinux' +DATABASE_USER = 'archlinux' +DATABASE_PASSWORD = 'archlinux' +DATABASE_HOST = '' +DATABASE_PORT = '' + +### Eanbles/disables caching +ENABLE_CACHE = False + +## location for saving dev pictures +MEDIA_ROOT = '/var/www/archlinux/htdocs/img/devs/' + +### web url for serving image files +MEDIA_URL = 'http://www.archlinux.org/img/devs/' + +# do not put a / at the end +DEPLOY_PATH = '/var/www/archlinux/archlinux' + +# Make this unique, and don't share it with anybody. +SECRET_KEY = '00000000000000000000000000000000000000000000000' + |