diff options
author | 2020-12-29 15:34:41 +0200 | |
---|---|---|
committer | 2020-12-29 15:34:41 +0200 | |
commit | e347944b997dd1dd808cb1cc5df388e4a9bba85e (patch) | |
tree | aeeed1c53b47d85f9d30d5ff826dfba1b1617dee /backend/constants.py | |
parent | Minor DevOps tweaks (diff) |
Add Discord bot token constant from environment
Diffstat (limited to 'backend/constants.py')
-rw-r--r-- | backend/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/constants.py b/backend/constants.py index fedab64..d9d2735 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -23,6 +23,7 @@ FORMS_BACKEND_DSN = os.getenv("FORMS_BACKEND_DSN") DOCS_PASSWORD = os.getenv("DOCS_PASSWORD") SECRET_KEY = os.getenv("SECRET_KEY", binascii.hexlify(os.urandom(30)).decode()) +DISCORD_BOT_TOKEN = os.getenv("DISCORD_BOT_TOKEN") HCAPTCHA_API_SECRET = os.getenv("HCAPTCHA_API_SECRET") |