haldis/app/config.example.py

15 lines
334 B
Python
Raw Normal View History

2015-03-31 18:15:22 +00:00
# config
2019-09-05 01:33:29 +00:00
2015-03-31 18:15:22 +00:00
class Configuration(object):
2019-09-05 01:33:29 +00:00
SQLALCHEMY_DATABASE_URI = "sqlite:///haldis.db"
2017-01-06 11:05:31 +00:00
SQLALCHEMY_TRACK_MODIFICATIONS = False
2015-03-31 18:15:22 +00:00
DEBUG = True
2019-09-05 01:33:29 +00:00
SECRET_KEY = "<change>"
SLACK_WEBHOOK = "<add url>"
LOGFILE = "haldis.log"
ZEUS_KEY = "tomtest"
ZEUS_SECRET = "blargh"
AIRBRAKE_ID = ""
AIRBRAKE_KEY = ""