summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--settings.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/settings.py b/settings.py
new file mode 100644
index 0000000..0effb96
--- /dev/null
+++ b/settings.py
@@ -0,0 +1,11 @@
+import os
+
+# set this to False on productive systems
+DEBUG = True
+
+# just generate a new secret key on each startup
+SECRET_KEY = os.urandom(42)
+
+# database
+SQLALCHEMY_DATABASE_URI = "sqlite:///test.sqlite"
+SQLALCHEMY_ECHO = True