git.fiddlerwoaroof.com
Browse code

added sample config

fiddlerwoaroof authored on 22/03/2015 05:29:32
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,11 @@
1
+import os
2
+import base64
3
+
4
+class config:
5
+    debug = True
6
+    secret_key = "<some random string>"
7
+    db = "<theDatabaseName>"
8
+    user = "<theDatabaseUser>"
9
+    password = "<theDatabasePassword>"
10
+    host = "localhost"
11
+