csv-library-website/makefile

12 lines
176 B
Makefile
Raw Normal View History

default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt && \
pip install -e .
run:
2021-02-17 15:46:50 +01:00
@.venv/bin/python library/page.py
.PHONY: setup run