1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-10-30 23:58:09 +02:00
Files

Documentation

Documentation is written in mkdocs and there are a few extensions that allow richer authoring than markdown.

To iterate with documentation, therefore, it is recommended to run the mkdocs server and view your pages in a browser.

To run the docs locally, do:

docker build -t material-mkdocs ./www
docker run --rm -p 8000:8000 -v ./www:/docs material-mkdocs

The site should soon be available at [http://localhost:8000] and auto-update after most changes.

Tip

If you use task, you can also run task docs:serve instead.