Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmaguire committed Dec 28, 2024
1 parent 4f092d6 commit d06682b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
all: install

clean:
rm -rf venv

install:
python -m venv venv
. venv/bin/activate; pip install -r requirements.txt \
&& find plugins -type f -name requirements.txt -exec pip install --no-cache-dir -r {} \;

.PHONY: clean install all

0 comments on commit d06682b

Please sign in to comment.