From 424d2a77302c4436148a560d429cc23e9d387e76 Mon Sep 17 00:00:00 2001 From: eliott Date: Sat, 5 Jan 2008 14:56:15 -0800 Subject: Changes --- local_settings.py.example | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) (limited to 'local_settings.py.example') diff --git a/local_settings.py.example b/local_settings.py.example index 1a54e19..c6f3160 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: -- cgit v1.2.3-24-g4f1b