aboutsummaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorPriit Laes <plaes@plaes.org>2010-07-09 13:41:46 +0300
committerPriit Laes <plaes@plaes.org>2010-07-09 13:41:46 +0300
commit3519e42c795d860d076787aadfbe7123f2a0ccaf (patch)
tree10401454477caf03f5626a14e6557e88976fc7b9 /conf
parentAdded herd qa-checker (diff)
downloadgsoc2010-grumpy-3519e42c795d860d076787aadfbe7123f2a0ccaf.tar.gz
gsoc2010-grumpy-3519e42c795d860d076787aadfbe7123f2a0ccaf.tar.bz2
gsoc2010-grumpy-3519e42c795d860d076787aadfbe7123f2a0ccaf.zip
Move grumpy.cfg to separate dir
Diffstat (limited to 'conf')
-rw-r--r--conf/grumpy.cfg13
1 files changed, 13 insertions, 0 deletions
diff --git a/conf/grumpy.cfg b/conf/grumpy.cfg
new file mode 100644
index 0000000..6abcad8
--- /dev/null
+++ b/conf/grumpy.cfg
@@ -0,0 +1,13 @@
+# This is an example configuration file for Grumpy application
+
+# Debug mode: Please be sure that this is disabled on development servers
+# because it allows execution of arbitrary code.
+DEBUG = True
+# Secret random key for cookie generation. For best results of randomness
+# use the snippet below:
+# >> import os ; os.urandom(24)
+SECRET_KEY='Change me'
+
+# Database configuration
+SQLALCHEMY_ECHO=False
+SQLALCHEMY_DATABASE_URI='postgresql://grumpy:grumpy@localhost/grumpy'