aboutsummaryrefslogtreecommitdiffstats
path: root/backend/constants.py
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-02-24 12:05:46 +0100
committerGravatar Matteo Bertucci <[email protected]>2021-02-24 12:05:46 +0100
commitc31bb72067d5192cbf8fb4ec523ee90ec32693d1 (patch)
treec9551728c773411be5ae42c72d3d61f56e76194a /backend/constants.py
parentMerge pull request #56 from python-discord/dependabot/pip/motor-2.3.1 (diff)
Add snekbox to the environment
Diffstat (limited to 'backend/constants.py')
-rw-r--r--backend/constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/backend/constants.py b/backend/constants.py
index fedab64..cccf437 100644
--- a/backend/constants.py
+++ b/backend/constants.py
@@ -9,6 +9,7 @@ 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")
+SNEKBOX_URL = os.getenv("SNEKBOX_URL", "http://snekbox.default.svc.cluster.local/eval")
OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID")
OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET")