forked from toolshed/docs.coopcloud.tech
custom_theme
demo
docs
.dockerignore
.drone.yml
.gitignore
Dockerfile
LICENSE
README.md
compose.yml
makefile
mkdocs.yml
renovate.json
requirements.txt
10 lines
197 B
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
|