From 25489b3c2d82148cabfe07f5f11a28c6314ce504 Mon Sep 17 00:00:00 2001 From: jpt Date: Sat, 19 Apr 2025 23:25:05 -0500 Subject: [PATCH] just reset --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 2b2e10d..61abd17 100644 --- a/Justfile +++ b/Justfile @@ -5,6 +5,13 @@ lint: test *ARGS: uv run pytest {{ARGS}} +reset: + rm -rf _logs/* + rm -rf _staticfiles + rm -rf db.sqlite3 + uv run python manage.py migrate + uv run python manage.py createsuperuser + runserver *ARGS: uv run python manage.py runserver {{ARGS}}