The source for the official fooyin documentation, built with Sphinx and deployed on Read the Docs.
The published documentation is available at fooyin.readthedocs.io.
- Python 3.10 or newer
- pip
- Make
- Git
Install the required packages:
sudo pacman -S --needed git make python python-pipClone the repository:
git clone https://github.com/fooyin/fooyin-docs.git
cd fooyin-docsCreate and activate a virtual environment:
python -m venv .venv
source .venv/bin/activateInstall the documentation dependencies:
python -m pip install -r docs/requirements.txtBuild the HTML documentation:
make -C docs htmlOpen the generated site at:
docs/build/html/index.html
To rebuild from scratch:
make -C docs clean htmlBuild with warnings treated as errors before submitting changes:
make -C docs html SPHINXOPTS="-W --keep-going"Changes pushed to the master branch are automatically built and published by Read the Docs.