haldis/app/config.example.py

13 lines
277 B
Python
Raw Normal View History

2015-03-31 18:15:22 +00:00
# config
class Configuration(object):
2015-04-03 16:51:19 +00:00
SQLALCHEMY_DATABASE_URI = 'sqlite:///haldis.db'
2015-03-31 18:15:22 +00:00
DEBUG = True
SECRET_KEY = '<change>'
SLACK_WEBHOOK = '<add url>'
2015-04-03 16:51:19 +00:00
LOGFILE = 'haldis.log'
2015-03-31 18:15:22 +00:00
ZEUS_KEY = ''
ZEUS_SECRET = ''
2015-06-09 14:47:11 +00:00
AIRBRAKE_ID = ''
AIRBRAKE_KEY = ''