Add scripts to build the documentation
Opened this issue · 0 comments
jtpio commented
Problem
Currently there is no easy way to build the documentation locally.
Suggested Improvement
- Add scripts to build the documentation. For example similar to:
[tool.hatch.envs.docs]
features = ["docs"]
[tool.hatch.envs.docs.scripts]
build = "sphinx-build -W -b html docs docs/build/html"
watch = "sphinx-autobuild -W -b html docs docs/build/html --host 0.0.0.0"
serve = "python -m http.server --directory docs/build/html"
- Add a section to the contributing guide about contributing to the documentation