diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-02-28 00:18:38 +0100 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-02-28 00:18:38 +0100 |
| commit | 54e247945dfa3a4bd80f71fce1b506bec12178a9 (patch) | |
| tree | 6b1a4f9616f4b1bdc7e4486fb5d07dbcc96c3abd /Makefile | |
Initial
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..484791c --- /dev/null +++ b/Makefile | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | all: install | ||
| 2 | |||
| 3 | run: | ||
| 4 | venv/bin/python avon.py -P 8080 & | ||
| 5 | |||
| 6 | venv: | ||
| 7 | python3 -m venv ./venv | ||
| 8 | |||
| 9 | install: venv | ||
| 10 | . venv/bin/activate && pip install --upgrade pip | ||
| 11 | . venv/bin/activate && pip install -r requirements.txt | ||
