From c846da75a88ec937cc3c3de966ac04f29324d627 Mon Sep 17 00:00:00 2001 From: jpt Date: Sun, 20 Apr 2025 00:21:48 -0500 Subject: [PATCH] document just recipes --- Justfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 61abd17..c09cf78 100644 --- a/Justfile +++ b/Justfile @@ -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}}