From d8ff8b3641b9f6d6e6cffc6fb6945b0b1215266e Mon Sep 17 00:00:00 2001 From: Raphael Bitton Date: Fri, 10 Oct 2025 21:07:31 -0500 Subject: [PATCH] added localhost to allowed --- FlightGrid/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FlightGrid/settings.py b/FlightGrid/settings.py index 389d107..035127b 100644 --- a/FlightGrid/settings.py +++ b/FlightGrid/settings.py @@ -25,7 +25,7 @@ SECRET_KEY = "django-insecure-a_(p5k(2sgb(&ryzu9a+0yz_w+gi-z4o=0m7)kexf9k70k=+j$ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = ["100.100.200.0"] +ALLOWED_HOSTS = ["100.100.200.0", "localhost"] # Application definition