Add makefile

pull/14/head
Luke Murphy 2 years ago
parent e89ea879da
commit 8373c81b83
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

@ -0,0 +1,9 @@
default: run
dependencies:
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
run: dependencies
@.venv/bin/mkdocs serve
.PHONY: dependencies run
Loading…
Cancel
Save