haldis/app/config.example.py

17 lines
411 B
Python
Raw Normal View History

2019-09-10 15:17:35 +02:00
"An example for a Haldis config"
2015-03-31 20:15:22 +02:00
# config
2019-09-05 03:33:29 +02:00
class Configuration:
2019-09-10 15:17:35 +02:00
"Haldis configuration object"
# pylint: disable=too-few-public-methods
2019-09-05 03:33:29 +02:00
SQLALCHEMY_DATABASE_URI = "sqlite:///haldis.db"
2017-01-06 12:05:31 +01:00
SQLALCHEMY_TRACK_MODIFICATIONS = False
2015-03-31 20:15:22 +02:00
DEBUG = True
HALDIS_ADMINS = []
2019-09-05 03:33:29 +02:00
SECRET_KEY = "<change>"
2019-09-11 22:38:01 +02:00
SLACK_WEBHOOK = None
2019-09-05 03:33:29 +02:00
LOGFILE = "haldis.log"
ZEUS_KEY = "tomtest"
ZEUS_SECRET = "blargh"