summaryrefslogtreecommitdiff
path: root/settings.py
blob: 0effb968c98cd60d5c6d7f7897591e54c783063e (plain)
1
2
3
4
5
6
7
8
9
10
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