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