mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
12 lines
153 B
Makefile
12 lines
153 B
Makefile
.PHONY: docs
|
|
|
|
install:
|
|
pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
|
|
b docs:
|
|
mkdocs build --strict
|
|
|
|
s docs-serve:
|
|
mkdocs serve --strict
|