This repository contains project-wide documentation.
Building and running the site locally requires a recent extended version of Hugo.
You can find out more about how to install Hugo for your environment in our
Getting started guide.
hugo serverYou can run the website inside a Docker container, the container runs with a volume bound to the root folder.
-
Build the docker image
docker compose up --build
-
Verify that the service is working.
Open your web browser and type
http://localhost:1313in your navigation bar, This opens a local instance of the homepage. You can now make changes to the docs and those changes will immediately show up in your browser after you save.
To stop Docker Compose, on your terminal window, press Ctrl + C.
To remove the produced images run:
docker compose rmFor more information see the [Docker Compose documentation][].
This repository includes GitHub Actions workflows to check for broken links:
- PR checks:
.github/workflows/check-broken-links.yaml(runs on every PR) - Scheduled checks:
.github/workflows/check-broken-links-schedule.yaml(runs weekly)
Both workflows use lychee to detect broken links.
- URL patterns to ignore are specified in
.lycheeignore - See
.lycheeignore.mdfor documentation on the ignore patterns - See
.github/workflows/README.mdfor workflow documentation