diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..549b68d --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: docs + +install: + pip install --upgrade pip + pip install -r requirements.txt + +b docs: + mkdocs build --strict + +s docs-serve: + mkdocs serve --strict