From de9504a8d5645a803e7b6d36a7ea9364f327d949 Mon Sep 17 00:00:00 2001 From: Akarys42 Date: Mon, 11 Nov 2019 19:38:42 +0100 Subject: Add pipenv run start command --- Pipfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Pipfile b/Pipfile index f136a328..81a64634 100644 --- a/Pipfile +++ b/Pipfile @@ -43,6 +43,7 @@ unittest-xml-reporting = "~=2.5.1" python_version = "3.7" [scripts] +start = "python manage.py run" makemigrations = "python manage.py makemigrations" django_shell = "python manage.py shell" test = "coverage run manage.py test" -- cgit v1.2.3 From 6fe95330f9a9a2ab325b507a3e257bb39b75c5bf Mon Sep 17 00:00:00 2001 From: Matteo Bertucci Date: Tue, 12 Nov 2019 08:08:55 +0100 Subject: Add the `--debug` flag to the start command --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 81a64634..cb5776e0 100644 --- a/Pipfile +++ b/Pipfile @@ -43,7 +43,7 @@ unittest-xml-reporting = "~=2.5.1" python_version = "3.7" [scripts] -start = "python manage.py run" +start = "python manage.py run --debug" makemigrations = "python manage.py makemigrations" django_shell = "python manage.py shell" test = "coverage run manage.py test" -- cgit v1.2.3