From e347944b997dd1dd808cb1cc5df388e4a9bba85e Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Tue, 29 Dec 2020 15:34:41 +0200 Subject: Add Discord bot token constant from environment --- backend/constants.py | 1 + 1 file changed, 1 insertion(+) (limited to 'backend/constants.py') 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") -- cgit v1.2.3