diff options
author | eliott <eliott@cactuswax.net> | 2008-01-05 14:56:15 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-01-05 16:18:19 -0800 |
commit | 424d2a77302c4436148a560d429cc23e9d387e76 (patch) | |
tree | fb3ca784b512cd019c8588fc1417551c1742e2c2 | |
parent | 2582fd62cc2e7c88a068d35ff606a3561184c2cd (diff) |
Changes
-rw-r--r-- | local_settings.py.example | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/local_settings.py.example b/local_settings.py.example index 1a54e198..c6f31603 100644 --- a/local_settings.py.example +++ b/local_settings.py.example @@ -1,31 +1,38 @@ -# Django settings for archlinux project. +### Django settings for archlinux project. ## Debug settings DEBUG = False ## Notification admins ADMINS = ( - ('Joe Admin', 'joeadmin@example.com'), + # ('Joe Admin', 'joeadmin@example.com'), ) -## Database settings -DATABASE_ENGINE = 'mysql' -DATABASE_NAME = 'archlinux' -DATABASE_USER = 'archlinux' -DATABASE_PASSWORD = 'archlinux' -DATABASE_HOST = '' -DATABASE_PORT = '' +## Sqlite Database settings +#DATABASE_ENGINE = 'sqlite3' +#DATABASE_NAME = 'archlinux.db' -### Eanbles/disables caching -ENABLE_CACHE = False +## MySQL Database settings +#DATABASE_ENGINE = 'mysql' +#DATABASE_NAME = 'archlinux' +#DATABASE_USER = 'archlinux' +#DATABASE_PASSWORD = 'archlinux' +#DATABASE_HOST = '' +#DATABASE_PORT = '' + +## Enable/disable caching +CACHE = False + +## Define a cache backend +CACHE_BACKEND = 'file:///tmp/ALdjangocache?timeout=900' ## location for saving dev pictures MEDIA_ROOT = '/var/www/archlinux/htdocs/img/devs/' -### web url for serving image files +## web url for serving image files MEDIA_URL = 'http://www.archlinux.org/img/devs/' -# Make this unique, and don't share it with anybody. +## Make this unique, and don't share it with anybody. SECRET_KEY = '00000000000000000000000000000000000000000000000' # vim: set ts=4 sw=4 et: |