From 0567318344330295512176569a84afc9748d79c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Thu, 11 Apr 2013 01:14:49 +0200 Subject: First part of the transition to flask --- settings.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 settings.py (limited to 'settings.py') 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 -- cgit v1.2.3