tree: 2a76508650cb27fdba340c13e3375b01ed31faac [path history] [tgz]
  1. _includes/
  2. _static/
  3. api/
  4. _stardoc_footer.md
  5. bazel_inventory.txt
  6. BUILD.bazel
  7. conf.py
  8. coverage.md
  9. gazelle.md
  10. getting-started.md
  11. glossary.md
  12. index.md
  13. pip.md
  14. pypi-dependencies.md
  15. pyproject.toml
  16. README.md
  17. readthedocs_build.sh
  18. requirements.txt
  19. support.md
docs/sphinx/README.md

rules_python Sphinx docs generation

The docs for rules_python are generated using a combination of Sphinx, Bazel, and Readthedocs.org. The Markdown files in source control are unlikely to render properly without the Sphinx processing step because they rely on Sphinx and MyST-specific Markdown functionality.

The actual sources that Sphinx consumes are in this directory, with Stardoc generating additional sources or Sphinx.

Manually building the docs isn't necessary -- readthedocs.org will automatically build and deploy them when commits are pushed to the repo.

Generating docs for development

Generating docs for development is a two-part process: starting a local HTTP server to serve the generated HTML, and re-generating the HTML when sources change. The quick start is:

bazel run //docs/sphinx:docs.serve  # Run in separate terminal
ibazel build //docs/sphinx:docs  # Automatically rebuilds docs

This will build the docs and start a local webserver at http://localhost:8000 where you can view the output. As you edit files, ibazel will detect the file changes and re-run the build process, and you can simply refresh your browser to see the changes. Using ibazel is not required; you can manually run the equivalent bazel command if desired.

Installing ibazel

The ibazel tool can be used to automatically rebuild the docs as you development them. See the ibazel docs for how to install it. The quick start for linux is:

sudo apt install npm
sudo npm install -g @bazel/ibazel

MyST Markdown flavor

Sphinx is configured to parse Markdown files using MyST, which is a more advanced flavor of Markdown that supports most features of restructured text and integrates with Sphinx functionality such as automatic cross references, creating indexes, and using concise markup to generate rich documentation.

MyST features and behaviors are controlled by the Sphinx configuration file, docs/sphinx/conf.py. For more info, see https://myst-parser.readthedocs.io.

Sphinx configuration

The Sphinx-specific configuration files and input doc files live in docs/sphinx.

The Sphinx configuration is docs/sphinx/conf.py. See https://www.sphinx-doc.org/ for details about the configuration file.

Readthedocs configuration

There's two basic parts to the readthedocs configuration:

  • .readthedocs.yaml: This configuration file controls most settings, such as the OS version used to build, Python version, dependencies, what Bazel commands to run, etc.
  • https://readthedocs.org/projects/rules-python: This is the project administration page. While most settings come from the config file, this controls additional settings such as permissions, what versions are published, when to publish changes, etc.

For more readthedocs configuration details, see docs.readthedocs.io.