summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--settings.py.sample12
1 files changed, 12 insertions, 0 deletions
diff --git a/settings.py.sample b/settings.py.sample
index 6c91281..0d54a70 100644
--- a/settings.py.sample
+++ b/settings.py.sample
@@ -1,3 +1,15 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+
SECRET_KEY = 'secret_key_to_fill_in'
MAX_CONTENT_LENGTH = 10 * 1024 * 1024
DEBUG = False
+
+FORM_START_YEAR = 1999
+ALLOWED_EXTENSIONS = ['txt', 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'zip', 'gs', 'gz' ]
+
+MODULES = {
+ 'informatik' : [
+ ('alp1', u'ALP1 - Funktionale Programmierung'),
+ ]
+}