Files
mkdocs-quickstart/Makefile
2020-10-17 16:48:56 +02:00

23 lines
265 B
Makefile

.PHONY: docs
default: install
h help:
@egrep '(^\S)|(^$$)|\s+@echo' 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