multifeeder/Makefile

14 lines
258 B
Makefile
Raw Normal View History

2021-02-16 23:26:03 +01:00
default: run
2022-05-18 16:07:54 +02:00
permissions:
@sudo chown -R gitea:www-data /var/www/multifeeder/
@sudo chmod -R g+rwX /var/www/multifeeder/.git/
2021-02-16 23:26:03 +01:00
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