Skip to content

Latest commit

 

History

History

docs

The ACA-Py docs Folder

The ACA-Py docs folder contains the source content for the ACA-Py documentation site aca-py.org and for the ACA-Py source code internals documentation project at ReadTheDocs, published at https://aries-cloud-agent-python.readthedocs.io.

This following covers how the two sets of documents are managed and how to update them.

To generate and locally run the docs website, use docker as follows:

  • Get a Material for Mkdocs docker image with the necessary extensions by running from the ACA_Py root folder:
    • docker build -f docs/mkdocs-dockerfile.yml -t squidfunk/mkdocs-material .
  • Run the resulting docker image from the root folder to generate the website on the current branch:
    • docker run --rm -it -p 8000:8000 --name mkdocs-material -v ${PWD}:/docs squidfunk/mkdocs-material
    • Open your browser: http://localhost:8000 and test out the docs.