We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f092d6 commit d06682bCopy full SHA for d06682b
Makefile
@@ -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