haldis/app/config.example.py

21 lines
513 B
Python
Raw Normal View History

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