diff --git a/makefile b/makefile new file mode 100644 index 0000000..2fba093 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +.PHONY: all + +help: + @echo "Available commands:" + @echo " make setup - Set up the application (migrate + collectstatic)" + +setup: + /opt/uv/uv run python src/manage.py migrate + /usr/local/bin/pnpm --dir src/ install