This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
docs.coopcloud.tech/makefile

10 lines
197 B
Makefile

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