From 0580764c79d767969b228cca053e98692ad8eac7 Mon Sep 17 00:00:00 2001 From: Stefan Allius Date: Sun, 30 Mar 2025 00:33:15 +0100 Subject: [PATCH] add install target for easier dev envv setup --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24f9ab6..49be846 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: build clean addon-dev addon-debug addon-rc addon-rel debug dev preview rc rel +.PHONY: build clean addon-dev addon-debug addon-rc addon-rel debug dev preview rc rel check-docker-compose install debug dev preview rc rel: $(MAKE) -C app $@ @@ -12,3 +12,7 @@ addon-dev addon-debug addon-rc addon-rel: check-docker-compose: docker-compose config -q +install: + python3 -m pip install --upgrade pip + python3 -m pip install -r requirements.txt + python3 -m pip install -r requirements-test.txt \ No newline at end of file