Add option to modify HTTP pool size
[akkoma] / docs / Makefile
1 all: install
2 pipenv run mkdocs build
3
4 branch := $(shell git rev-parse --abbrev-ref HEAD)
5 install:
6 pipenv install
7 clean:
8 rm -rf site
9 serve:
10 pipenv run python3 -m http.server -d site
11 zip:
12 zip -r docs.zip site/*
13 deploy:
14 cd site && rclone copy . scaleway:akkoma-docs/$(branch)