Documentation Setup for Cistell¶
This directory contains the Sphinx documentation for Cistell.
Prerequisites¶
Install uv and then install dependencies:
uv sync
Building the Documentation¶
Once you have installed all the required dependencies, you can build the documentation:
Navigate to the
docsDirectory: Change your current directory to thedocssubfolder:cd docs
Build the Documentation: Use the
makeutility to build the documentation:On Unix-based systems (Linux, macOS), run:
make htmlOn Windows, run:
bash .\make.bat htmlThis command will generate the HTML documentation in the_build/htmldirectory.
Tip
For examples check the MyST syntax cheat sheet, Roles and Directives and the complete directives references at Myst docs
View the Documentation: Open the HTML files in the
_build/htmldirectory with a web browser to view the rendered documentation.
Troubleshooting¶
If you encounter any issues with missing dependencies or errors during the build process, ensure that all dependencies are correctly installed and that you are in the proper directory (where the Makefile is located).
For detailed errors or troubleshooting, refer to the Sphinx documentation or check the console output for error messages.
For more information on how to contribute to the documentation, see the contributing section in the main project documentation.