Managing ACA-Py Read The Docs
Documentation¶
This document describes how to maintain the Read The Docs
documentation that
is generated from the ACA-Py code base. As the structure of the ACA-Py code
evolves, the RTD files need to be regenerated and possibly updated, as described here.
Generating ACA-Py Read The Docs (RTD) documentation¶
Before you start¶
To test generate and view the RTD documentation locally, you must install Sphinx and the Sphinx RTD theme. Follow the instructions on the respective pages to install and verify the installation on your system.
Generate Module Files¶
To rebuild the project and settings from scratch:
cd docs; rm -rf generated; sphinx-apidoc -f -M -o ./generated ../acapy_agent/ $(find ../acapy_agent/ -name '*tests*', cd ..)
Note that the find
command that is used to exclude any of the test
python files from the RTD documentation.
Check the git status
in your repo to see if the generator updates, adds or removes any existing RTD modules (in the generated
folder).
Reviewing the files locally¶
To auto-generate the module documentation locally run:
Once generated, go into the docs/_build
folder and open index.html
in a browser. Note that the _build
is
.gitignore
'd and so will not be part of a git push.
Look for Errors¶
This is the hard part; looking for errors in docstrings added by devs. Some tips:
- missing imports (
No module named 'async_timeout'
) can be solved by adding the module to the list ofautodoc_mock_imports
in theconf.py
file in the ACA-Pydocs
folder. - Ignore any errors in .md files
- Ignore the warnings about including
docs/README.md
- Ignore an dist-package errors
Other than that, please investigate and fix things that you find. If there are fixes, it's usually to adhere to the rules around processing docstrings, and especially around JSON samples.
Checking for missing modules¶
The file index.rst
in the ACA-Py docs
folder drive the RTD generation. It picks up all the modules
in the source code, starting from the root ../acapy_agent
folder. However, some modules
are not picked up automatically from the root and have to be manually added to index.rst
. To do that:
- Get a list of all generated modules by running:
ls generated | grep "acapy_agent.[a-z]*.rst"
- Compare that list with the modules listed in the "Subpackages" section of the left side menu in your browser, including any listed below the "Submodules".
If any are missing, you likely need to add them to the index.rst
file in the toctree
section of the file.
You will see there are already several instances of that, notably "connections" and "protocols".
Updating the readthedocs.org site¶
The RTD documentation is not currently auto-generated, so a manual re-generation of the documentation is still required.
TODO: Automate this when new tags are applied to the repository.