Tip
Read the manual: https://manual.121.global
-
Install a Python virtual environment (On Linux/macOS):
python3 -m venv venv source venv/bin/activate
-
Install dependencies
pip install -r requirements.txt
-
Build the documentation
mkdocs serve
-
Preview at: http://localhost:8000
-
Install Docker: https://docs.docker.com/get-docker/
-
Open a terminal at this folder to build a Docker-container:
docker build --tag manual-121 .
-
Run the Docker-container:
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs manual-121
- Material for MkDocs: https://squidfunk.github.io/mkdocs-material/