9 lines
289 B
Python
9 lines
289 B
Python
|
class Configuration(object):
|
||
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///endorsement.db'
|
||
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
||
|
DEBUG = True
|
||
|
SECRET_KEY = '<change>'
|
||
|
SLACK_WEBHOOK = '<add url>'
|
||
|
LOGFILE = 'endorsement.log'
|
||
|
ZEUS_KEY = 'tomtest'
|
||
|
ZEUS_SECRET = 'blargh'
|