diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2020-04-20 00:52:33 +0200 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2020-04-20 00:52:33 +0200 |
commit | 2460ef593a17eecad863e8702904292cc9706d9e (patch) | |
tree | e872cee22c8f77b1f25976d794d48564723627dd /Makefile |
Kickoff
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..eae1e68 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,11 @@ | |||
1 | all: install | ||
2 | |||
3 | run: | ||
4 | ./venv/bin/python Filer.py -P 5000 & | ||
5 | |||
6 | venv: | ||
7 | python3 -m venv ./venv | ||
8 | |||
9 | install: venv | ||
10 | ./venv/bin/pip install --upgrade pip | ||
11 | ./venv/bin/pip install -r requirements.txt | ||