csv-library-website/makefile
Luke Murphy 54801dcc35
Wire up install docs and requirements
And fix an import that I maybe broke but not sure.
2020-12-12 13:50:00 +01:00

11 lines
163 B
Makefile

default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt
run:
@FLASK_APP=library.page .venv/bin/flask run
.PHONY: setup run