endorsement/config.example.py

9 lines
258 B
Python
Raw Normal View History

class Configuration(object):
SQLALCHEMY_DATABASE_URI = 'sqlite:///endorsement.db'
SQLALCHEMY_TRACK_MODIFICATIONS = False
DEBUG = True
SECRET_KEY = '<change>'
LOGFILE = 'endorsement.log'
ZEUS_KEY = 'tomtest'
2018-07-18 16:35:15 +00:00
ZEUS_SECRET = 'blargh'