From c3bd3587a4835d8b1094642e73e0021c34a2088d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Mih=C3=A1lik?= Date: Thu, 22 Aug 2024 10:23:33 +0200 Subject: [PATCH] Add localhost to allowed hosts (#399) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Martin Mihálik --- 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", ]