docs.coopcloud.tech/makefile

10 lines
197 B
Makefile
Raw Permalink Normal View History

2021-02-23 13:47:00 +00:00
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