[docs] Split docs into multiple files and publish with gh-actions

This commit is contained in:
chme
2022-03-20 12:00:31 +01:00
parent f991d9ddf9
commit b5dcc04b2d
47 changed files with 671 additions and 616 deletions

18
mkdocs.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/sh
# Run mkdocs commands
#
# No local installation of mkdocs and the required plugins is required.
# Instead this script uses the offical docker image for "Material for MkDocs"
#
# https://squidfunk.github.io/mkdocs-material/getting-started/#with-docker
#
# Without arguments the "serve" command is executed (starts the local development
# server).
#
# Usage examples:
#
# - Build documentation: ./mkdocs.sh build
# - Show command help: ./mkdocs.sh --help
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material $@