16 lines
411 B
Python
16 lines
411 B
Python
"An example for a Haldis config"
|
|
# config
|
|
|
|
|
|
class Configuration:
|
|
"Haldis configuration object"
|
|
# pylint: disable=too-few-public-methods
|
|
SQLALCHEMY_DATABASE_URI = "sqlite:///haldis.db"
|
|
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
|
DEBUG = True
|
|
HALDIS_ADMINS = []
|
|
SECRET_KEY = "<change>"
|
|
SLACK_WEBHOOK = None
|
|
LOGFILE = "haldis.log"
|
|
ZEUS_KEY = "tomtest"
|
|
ZEUS_SECRET = "blargh"
|