Change workflow stuff, update Readme, update .env handling #15

Merged
woutervermeer merged 10 commits from pre-prod into main 2026-03-11 08:39:52 +00:00
Showing only changes of commit 01ea42b64a - Show all commits

View File

@@ -24,7 +24,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
SECRET_KEY = os.environ["DJANGO_SECRET_KEY"]
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = bool(os.getenv("DEBUG"))
DEBUG = bool(os.getenv("DEBUG", False))
ALLOWED_HOSTS = os.getenv("ALLOWED_HOSTS").split(",")