initial commit

This commit is contained in:
2021-11-23 00:19:29 +01:00
commit 851f451354
19 changed files with 605 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY', os.urandom(12))
SENTRY_DSN = os.environ.get("SENTRY_DSN")
RELEASE_ID = os.environ.get("RELEASE_ID", "test")
RELEASEMODE = os.environ.get("RELEASEMODE", "dev")