multifeeder/Makefile

10 lines
128 B
Makefile
Raw Normal View History

2021-02-16 23:26:03 +01:00
default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt
run:
2021-02-17 17:44:12 +01:00
@.venv/bin/python start.py
2021-02-16 23:26:03 +01:00