diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-06-29 16:08:21 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-06-29 16:26:26 +0200 |
| commit | 1ac9addc3ad5fb8b9fdf95aec09d3092755cdb9a (patch) | |
| tree | 1ccc2f583376d86752676fe35a96dd7814d9154f /Makefile | |
| download | mimimitm-master.tar.gz mimimitm-master.zip | |
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 |
