evorepo/local_settings.py.example

40 lines
913 B
Plaintext
Raw Normal View History

2008-01-05 14:56:15 -08:00
### Django settings for archlinux project.
## Debug settings
DEBUG = False
## Notification admins
ADMINS = (
2008-01-05 14:56:15 -08:00
# ('Joe Admin', 'joeadmin@example.com'),
)
2008-01-05 14:56:15 -08:00
## Sqlite Database settings
#DATABASE_ENGINE = 'sqlite3'
2008-01-05 16:01:48 -08:00
#DATABASE_NAME = 'archweb.db'
2008-01-05 14:56:15 -08:00
## 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/'
2008-01-05 14:56:15 -08:00
## web url for serving image files
MEDIA_URL = 'http://www.archlinux.org/img/devs/'
2008-01-05 14:56:15 -08:00
## Make this unique, and don't share it with anybody.
SECRET_KEY = '00000000000000000000000000000000000000000000000'
# vim: set ts=4 sw=4 et: