From b481992ec06920411230c077184aa2abe2dc00d4 Mon Sep 17 00:00:00 2001 From: Fundor333 Date: Thu, 7 Jan 2021 19:50:46 +0100 Subject: [PATCH] Add collect statics in the makefile --- makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/makefile b/makefile index 937aad0..775b4c0 100644 --- a/makefile +++ b/makefile @@ -19,6 +19,7 @@ install: env ## Make venv and install requirements migrate: ## Make and run migrations pipenv run python manage.py makemigrations pipenv run python manage.py migrate + pipenv run python manage.py collectstatic --noinput .PHONY: test test: ## Run tests