From 0bb8e2e0ec07a169419490a119376664b4e66f8b Mon Sep 17 00:00:00 2001 From: Ekaropolus Date: Sun, 18 May 2025 22:34:32 -0600 Subject: [PATCH] Site id must be an integer --- polisplexity/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polisplexity/settings.py b/polisplexity/settings.py index 910503d..a8daedd 100644 --- a/polisplexity/settings.py +++ b/polisplexity/settings.py @@ -60,7 +60,7 @@ INSTALLED_APPS = [ CRISPY_ALLOWED_TEMPLATE_PACKS = "bootstrap5" CRISPY_TEMPLATE_PACK = "bootstrap5" -SITE_ID = os.getenv("SITE_ID", 1) +SITE_ID = int(os.getenv("SITE_ID", 1)) AUTHENTICATION_BACKENDS = [ "django.contrib.auth.backends.ModelBackend", # default