This repository contains the source code for the OpenProtein documentation, built with Sphinx.
To build the documentation, first install the dependencies from pyproject.toml. Our project uses pixi as a package manager but pip install should work:
pip install .
# if using pixi
# pixi installThen run the build command:
sphinx-build source build
# if using pixi
# pixi run buildThe built documentation will be in the build/ directory.
For live hot reloading during development, use sphinx-autobuild:
# use dev dependency which provides sphinx-autobuild
pip install .[dev]
sphinx-autobuild source build/html --port 5001
# if using pixi just run
pixi run devThis will serve the docs at http://localhost:5001 and automatically reload on changes.