From 80bf9eb57c0c4a3df5f2b22f5b28eb419107ade8 Mon Sep 17 00:00:00 2001 From: Stefan Heinemann Date: Fri, 16 Aug 2024 11:29:55 +0200 Subject: [PATCH] PB-554 Add serve make target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 84bbfa0..8c67ae7 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,10 @@ ci-check-format: format exit 1; \ fi +.PHONY: serve +serve: + $(PYTHON) $(DJANGO_MANAGER) runserver + # make sure that the code conforms to the style guide. Note that # - the DJANGO_SETTINGS module must be made available to pylint