djpeacher-django-projects/justfile

16 wiersze
229 B
Plaintext

export DEBUG := "True"
start:
python manage.py runserver
migrations:
python manage.py makemigrations
migrate:
python manage.py migrate
super:
python manage.py createsuperuser
shell:
python manage.py shell