haldis/app/config.example.py
2019-09-12 20:53:25 +02:00

18 lines
416 B
Python

"An example for a Haldis config"
# config
class Configuration():
"Haldis configuration object"
# pylint: disable=R0903
SQLALCHEMY_DATABASE_URI = "sqlite:///haldis.db"
SQLALCHEMY_TRACK_MODIFICATIONS = False
DEBUG = True
SECRET_KEY = "<change>"
SLACK_WEBHOOK = None
LOGFILE = "haldis.log"
ZEUS_KEY = "tomtest"
ZEUS_SECRET = "blargh"
AIRBRAKE_ID = ""
AIRBRAKE_KEY = ""