Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
Expand Down
2 changes: 1 addition & 1 deletion padam_django/asgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
"""
ASGI config for padam_django project.

It exposes the ASGI callable as a module-level variable named ``application``.
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

Expand Down