From 559629ebb84d747d2e8cb3c3c13979cca7e17107 Mon Sep 17 00:00:00 2001 From: Dorian Lesbre <dorian.lesbre@gmail.com> Date: Tue, 30 Mar 2021 16:37:24 +0200 Subject: [PATCH] Fix makefile overwriting secret on start --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36a8a47..6f74c81 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ host: $(SECRET) ## Host localy to access from same netword (make sure to add IP $(PYTHON) $(MANAGER) runserver 0.0.0.0:8000 .PHONY: start -start: install secret migrate serve ## Install requirements, apply migrations, then start development server +start: install $(SECRET) migrate serve ## Install requirements, apply migrations, then start development server .PHONY: clean clean: ## Remove migrations and delete database -- GitLab