csv-library-website/makefile
2021-02-17 15:45:22 +01:00

12 lines
185 B
Makefile

default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt && \
pip install -e .
run:
@cd library && ../.venv/bin/python page.py
.PHONY: setup run