From b27fe05ebe823ec1cf5056dd69bfb3cf1598cfde Mon Sep 17 00:00:00 2001 From: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com> Date: Thu, 15 Oct 2020 10:43:20 +0200 Subject: [PATCH] chore: Create Makefile --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile 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