From eb05d56986c9ac69e388e789f2139b9ffc4ddab3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Gremaud?= Date: Fri, 12 Jun 2026 00:41:02 +0200 Subject: [PATCH] chore: makefile --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 makefile 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