Browse Source

add django-shell target

Mohammed Khan 1 year ago
parent
commit
5939b20682
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Makefile

+ 4 - 0
Makefile

@@ -14,6 +14,10 @@ migrate:
 run-server:
 	poetry run python3 -m backend.manage runserver
 
+.PHONY: shell
+shell:
+	poetry run python -m backend.manage shell
+
 .PHONY: superuser
 superuser:
 	poetry run python3 -m backend.manage createsuperuser