From eb2060716fe81011274bcfd047ce5a0518a07035 Mon Sep 17 00:00:00 2001 From: JimLynx Date: Sun, 18 Oct 2020 17:04:20 +0100 Subject: [PATCH] #B01 Fixed bug with setup.bat not setting global server on .env --- setup.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.bat b/setup.bat index 97497702..1f05d6aa 100644 --- a/setup.bat +++ b/setup.bat @@ -4,7 +4,7 @@ MKDIR .venv ECHO CREATING .env file ECHO DEVELOPMENT=1 >> .env ECHO SECRET_KEY="your_secret_key_here" >> .env -ECHO SITE_NAME="localhost" >> .env +ECHO SITE_NAME="*" >> .env ECHO Installing pipenv for development use pip install pipenv CLS