X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=docs%2FMakefile;h=85b6dee6511556091ad9736092f0ad087130409f;hb=9dc3f8fcdce2fef279e1910c0e3310283caefde2;hp=e51c1d188734f417512865de6540e8480af4bbae;hpb=d2a185c01385ef53c712c8d315c69d5deb044e2f;p=akkoma diff --git a/docs/Makefile b/docs/Makefile index e51c1d188..85b6dee65 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,7 +1,14 @@ all: install pipenv run mkdocs build +branch := $(shell git rev-parse --abbrev-ref HEAD) install: pipenv install clean: rm -rf site +serve: + pipenv run python3 -m http.server -d site +zip: + zip -r docs.zip site/* +deploy: + cd site && rclone copy . scaleway:akkoma-docs/$(branch)