11 lines
202 B
Makefile
11 lines
202 B
Makefile
dj-port := "0.0.0.0:" + env_var_or_default("DJANGO_PORT", "8000")
|
|
|
|
default:
|
|
@just --list
|
|
|
|
django:
|
|
poetry run python manage.py runserver {{dj-port}}
|
|
|
|
shell:
|
|
poetry run python manage.py shell
|