mirror of
https://github.com/MichaelCurrin/mkdocs-quickstart.git
synced 2026-03-28 17:42:47 +01:00
30 lines
351 B
Makefile
30 lines
351 B
Makefile
.PHONY: docs
|
|
|
|
default: install
|
|
|
|
all: install build
|
|
|
|
|
|
h help:
|
|
@grep '^[a-z]' Makefile
|
|
|
|
|
|
install:
|
|
pip install pip --upgrade
|
|
pip install -r requirements.txt
|
|
|
|
upgrade:
|
|
pip install pip --upgrade
|
|
pip install -r requirements.txt --upgrade
|
|
|
|
|
|
s serve:
|
|
mkdocs serve --strict
|
|
|
|
|
|
b build:
|
|
mkdocs build --strict
|
|
|
|
d deploy:
|
|
mkdocs gh-deploy --strict --force
|