summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Zapke-Grùˆndemann <markus@keimlink.de>2012-03-28 21:42:05 +0200
committerMarkus Zapke-Grùˆndemann <markus@keimlink.de>2012-03-28 21:42:05 +0200
commit536811e550863dfacf855d659dd976db8893fc0f (patch)
tree43dc459537b95e542eec20055407308fa78d13a0
parenta13419db5b5afbde82017a23ecbf27857dd148dd (diff)
add production settings template
-rw-r--r--conf/prod_settings.tpl23
1 files changed, 23 insertions, 0 deletions
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