diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d1b2f44 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: run + +weights.pt: + wget "https://drive.google.com/u/0/uc?id=1qcr9DbgsX3ryrz2uU8w4Xm3cOrRywXqb&export=download" -O $@ + +venv: + python3 -m virtualenv venv && source venv/bin/activate && python3 -m pip install -r requirements.txt + +run: | venv weights.pt + source venv/bin/activate && mitmproxy -s mimimitm.py |
