From 74252b875918d3d390ba33b25ea52b57ada083ac Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sat, 14 Mar 2026 13:34:08 -0400 Subject: [PATCH] [project] Add justfile --- justfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..22d1010 --- /dev/null +++ b/justfile @@ -0,0 +1,10 @@ +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