Changes to siteindex layout
[archweb_dev-nj.git] / local_settings.py.example
blob1a54e198cf407b3bce2647f08bf26624cc80cd52
1 # Django settings for archlinux project.
3 ## Debug settings
4 DEBUG = False
6 ## Notification admins
7 ADMINS = (
8     ('Joe Admin', 'joeadmin@example.com'),
11 ## Database settings
12 DATABASE_ENGINE     = 'mysql'
13 DATABASE_NAME       = 'archlinux'
14 DATABASE_USER       = 'archlinux'
15 DATABASE_PASSWORD   = 'archlinux'
16 DATABASE_HOST       = ''
17 DATABASE_PORT       = ''
19 ### Eanbles/disables caching
20 ENABLE_CACHE = False
22 ## location for saving dev pictures
23 MEDIA_ROOT = '/var/www/archlinux/htdocs/img/devs/'
25 ### web url for serving image files
26 MEDIA_URL = 'http://www.archlinux.org/img/devs/'
28 # Make this unique, and don't share it with anybody.
29 SECRET_KEY = '00000000000000000000000000000000000000000000000'
31 # vim: set ts=4 sw=4 et: