haldis/app/config.example.py

21 lines
513 B
Python
Raw Permalink Normal View History

2022-04-20 01:27:52 +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_ADMIN_USERS = []
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"
2022-04-20 01:34:19 +02:00
ENABLE_MICROSOFT_AUTH = False
2022-04-20 01:27:52 +02:00
MICROSOFT_AUTH_ID = ""
MICROSOFT_AUTH_SECRET = ""