csv-library-website/makefile

11 lines
149 B
Makefile

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