Skip to content

Commit d06682b

Browse files
committed
Add Makefile
1 parent 4f092d6 commit d06682b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
all: install
2+
3+
clean:
4+
rm -rf venv
5+
6+
install:
7+
python -m venv venv
8+
. venv/bin/activate; pip install -r requirements.txt \
9+
&& find plugins -type f -name requirements.txt -exec pip install --no-cache-dir -r {} \;
10+
11+
.PHONY: clean install all

0 commit comments

Comments
 (0)