haldis/app/config.example.py

16 lines
388 B
Python
Raw Normal View History

2019-09-10 13:17:35 +00:00
"An example for a Haldis config"
2015-03-31 18:15:22 +00:00
# config
2019-09-05 01:33:29 +00:00
class Configuration:
2019-09-10 13:17:35 +00:00
"Haldis configuration object"
# pylint: disable=too-few-public-methods
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>"
2019-09-11 20:38:01 +00:00
SLACK_WEBHOOK = None
2019-09-05 01:33:29 +00:00
LOGFILE = "haldis.log"
ZEUS_KEY = "tomtest"
ZEUS_SECRET = "blargh"