Files
vrobbler/justfile
Colin Powell 74252b8759
All checks were successful
build & deploy / test (push) Successful in 1m40s
build & deploy / deploy (push) Successful in 21s
[project] Add justfile
2026-03-14 13:34:08 -04:00

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