1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00
2024-12-05 14:25:38 -03:00
..
2024-11-29 02:02:55 -03:00
2024-10-16 01:22:12 -03:00

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.

Prerequisites

With nix

If you have nix installed, you can:

nix develop .#docs

To drop into a shell with all the needed dependencies.

With Docker

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

Edit the docs

After installing mkdocs and extensions, build and run the documentation locally:

task docs:serve

The site will soon be available at http://localhost:8000 and auto-update after changes.