djpeacher-django-projects/justfile

16 wiersze
222 B
Plaintext
Czysty Zwykły widok Historia

2023-06-21 13:38:40 +00:00
set dotenv-load
2023-06-18 14:35:26 +00:00
start:
python manage.py runserver
migrations:
python manage.py makemigrations
migrate:
python manage.py migrate
2023-06-19 18:32:11 +00:00
super:
python manage.py createsuperuser
2023-06-18 14:35:26 +00:00
shell:
python manage.py shell