diff options
author | 2020-12-17 10:08:20 +0300 | |
---|---|---|
committer | 2020-12-17 10:09:33 +0300 | |
commit | 595c19ee50e638e081d43be1c2d0d6e0830676e2 (patch) | |
tree | 6bee88e9b46d6ce22f2dc9b0dd192ff32ccadc4a /backend/constants.py | |
parent | Merge branch 'main' into discord-webhook (diff) |
Adds Frontend URL to Env
Signed-off-by: Hassan Abouelela <[email protected]>
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 e733e53..11a14ef 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -6,6 +6,7 @@ import binascii # noqa from enum import Enum # noqa +FRONTEND_URL = os.getenv("FRONTEND_URL", "https://forms.pythondiscord.com") DATABASE_URL = os.getenv("DATABASE_URL") MONGO_DATABASE = os.getenv("MONGO_DATABASE", "pydis_forms") |