summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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