Skip to content

Commit 4fadbef

Browse files
Fixes Production URL Constant
Signed-off-by: Hassan Abouelela <[email protected]>
1 parent 167b87f commit 4fadbef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
SNEKBOX_URL = os.getenv("SNEKBOX_URL", "http://snekbox.default.svc.cluster.local/eval")
1414

1515
PRODUCTION = os.getenv("PRODUCTION", "True").lower() != "false"
16-
PRODUCTION_URL = "https://forms.pythondiscord.com/"
16+
PRODUCTION_URL = "https://forms.pythondiscord.com"
1717

1818
OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID")
1919
OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET")

0 commit comments

Comments
 (0)