csv-library-website/makefile

12 lines
185 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:45:22 +01:00
@cd library && ../.venv/bin/python page.py
.PHONY: setup run