From 0475ae95e18b5f0edb974d1c88ad2317d55a47f2 Mon Sep 17 00:00:00 2001 From: Dario Del Piano Date: Thu, 1 Aug 2019 12:43:39 +0200 Subject: [PATCH] added insecure flag to continue to serve static files --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4040e45..af4b4e58 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ run-django: ./manage.py runserver run-django-staging: - python3.6 manage.py runserver 0.0.0.0:8000 + python3.6 manage.py runserver --insecure 0.0.0.0:8000 run-frontend: cd static/org.geppetto.frontend/src/main/webapp/; npm run build-dev-noTest:watch;