- Have Python installed.
Known supported versions are from 3.10 to 3.12. - Install Poetry to manage dependencies.
You should only need to do this once. - Navigate into your clone of this repo.
- Install/Update project dependencies:
You should only need to do this after new releases.poetry install --sync
- Activate project dependencies:\
After the
poetry shell
poetry shell
command, you should be in a Poetry-managed environment. Your prompt might be prefixed with the name of the environment. - Serve the docs:\
mkdocs serve
- Open the website at the URL echoed by the program e.g. http://127.0.0.1:8000/.
-
Have Docker installed.
We recommend doing so via Docker-Desktop. -
Navigate into your clone of this repository.
-
Start the Docker container to serve the docs.
Using
Make
:make build make start
Or:
docker compose build docker compose up
-
Open the website at the URL provided e.g. http://localhost:8000/.