From e13a6ac524ad7edd3863a0729af968f889e56521 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Mih=C3=A1lik?= Date: Wed, 21 Aug 2024 16:28:08 +0200 Subject: [PATCH] Add localhost to allowed hosts --- webstrom/settings_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webstrom/settings_test.py b/webstrom/settings_test.py index 7ccf4f3..ff1830b 100644 --- a/webstrom/settings_test.py +++ b/webstrom/settings_test.py @@ -5,6 +5,7 @@ DEBUG = True ALLOWED_HOSTS = [ + "localhost", "test.strom.sk", ]