aboutsummaryrefslogtreecommitdiffstats
path: root/backend/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/constants.py')
-rw-r--r--backend/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/backend/constants.py b/backend/constants.py
index bf0c33c..fedab64 100644
--- a/backend/constants.py
+++ b/backend/constants.py
@@ -17,6 +17,9 @@ OAUTH2_REDIRECT_URI = os.getenv(
"https://forms.pythondiscord.com/callback"
)
+GIT_SHA = os.getenv("GIT_SHA", "dev")
+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())