diff --git a/Makefile b/Makefile index 4062f4c4..04af5c8c 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ run: ## Run the test server. - python manage.py runserver_plus + python3 manage.py runserver_plus install: ## Install the python requirements. pip install -r requirements.txt + +migrate: ## Install the python requirements. + python3 manage.py migrate diff --git a/manage.py b/manage.py index dcd7b5c7..bb86f7ec 100755 --- a/manage.py +++ b/manage.py @@ -1,3 +1,4 @@ + #!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os diff --git a/padam_django/asgi.py b/padam_django/asgi.py index 3b4826e3..ea8d1924 100644 --- a/padam_django/asgi.py +++ b/padam_django/asgi.py @@ -1,4 +1,4 @@ -""" + """ ASGI config for padam_django project. It exposes the ASGI callable as a module-level variable named ``application``. diff --git a/requirements.txt b/requirements.txt index 89c9f0c8..2203237b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -Django==3.2.5 +Django==4.2.9 -django-extensions==3.1.3 +django-extensions==3.2.1 Werkzeug==2.0.1 ipython==7.25.0