Skip to content

Developer guide

Documentation of the Basemaps codebase for developers

Creating and updating docs

The best way to run the docs locally is to use the same container as the CI process

To start the container in a local dev mode which creates a server on http://localhost:8000

docker run --rm \
    -v $PWD:/docs \
    -p 8000:8000 \
    squidfunk/mkdocs-material:9.4 serve -a 0.0.0.0:8000

As it is run inside of a container the additional -a to allow external connections to access it.