From 536811e550863dfacf855d659dd976db8893fc0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Zapke-Gru=CC=88ndemann?= Date: Wed, 28 Mar 2012 21:42:05 +0200 Subject: add production settings template --- conf/prod_settings.tpl | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 conf/prod_settings.tpl diff --git a/conf/prod_settings.tpl b/conf/prod_settings.tpl new file mode 100644 index 0000000..4a680ba --- /dev/null +++ b/conf/prod_settings.tpl @@ -0,0 +1,23 @@ +import os + +from settings import SITE_ROOT + +AUTH_LDAP_SERVER_URI = 'ldap://oberon.local.sublab.org' +AUTH_LDAP_BIND_PASSWORD = '' + +SECRET_KEY = '' + +MEDIA_ROOT = '' + +STATIC_ROOT = '' + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(SITE_ROOT, 'sublab.db'), + } +} + +DEBUG = False +TEMPLATE_DEBUG = DEBUG +THUMBNAIL_DEBUG = DEBUG -- cgit v1.2.1