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
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