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