From 559aa1edb84ec99d7c7eb91722a48e5646bdfaa8 Mon Sep 17 00:00:00 2001 From: Somraj-234 <110245790+Somraj-234@users.noreply.github.com> Date: Sun, 8 Sep 2024 20:01:00 +0530 Subject: [PATCH] allowed host on debug --- src/sjhome/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/sjhome/settings.py b/src/sjhome/settings.py index 56adb16..622674e 100644 --- a/src/sjhome/settings.py +++ b/src/sjhome/settings.py @@ -76,7 +76,8 @@ if DEBUG: ALLOWED_HOSTS = [ "127.0.0.1", - "localhost" + "localhost", + "sass-demo-production.up.railway.app" ]