document just recipes

This commit is contained in:
jpt 2025-04-20 00:21:48 -05:00
parent 092131e4ca
commit c846da75a8

View File

@ -1,10 +1,12 @@
# run pre-commit linters
lint:
uv run pre-commit run --all-files
# run pytest
test *ARGS:
uv run pytest {{ARGS}}
# reset database and ephemeral files
reset:
rm -rf _logs/*
rm -rf _staticfiles
@ -12,6 +14,7 @@ reset:
uv run python manage.py migrate
uv run python manage.py createsuperuser
# run development server
runserver *ARGS:
uv run python manage.py runserver {{ARGS}}