From b1c8f588551939cb6c8b9ae1b7ffc8693be31687 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 3 Jan 2023 22:04:22 +0100 Subject: [PATCH] Add make shell --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8690924..cb14996 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: createsuperuser +.PHONY: createsuperuser shell all: css migrate @@ -34,4 +34,7 @@ loadsample: python src/web/manage.py loaddata sample.yaml createsuperuser: - python src/web/manage.py createsuperuser \ No newline at end of file + python src/web/manage.py createsuperuser + +shell: + python src/web/manage.py shell \ No newline at end of file