Files
mkdocs-quickstart/docs/Makefile
2021-06-08 17:02:37 +02:00

26 lines
271 B
Makefile

.PHONY: docs
default: install
all: install build
h help:
@grep '^[a-z]' Makefile
install:
pip install --upgrade pip
pip install -r requirements.txt
s serve:
mkdocs serve --strict
b build:
mkdocs build --strict
d deploy:
mkdocs gh-deploy --strict --force