Files
vrobbler/justfile
Colin Powell 3e72042c24
Some checks failed
build / test (push) Has been cancelled
[justfile] push for release should only push tags
2026-06-04 11:22:14 -04:00

23 lines
477 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
celery:
poetry run celery -A vrobbler worker -l info --concurrency=2 --pool=threads
celery-beat:
poetry run celery -A vrobbler beat -l info
release kind="minor":
poetry run python scripts/release.py {{kind}}
push:
git push --tags && git push --tags gitea