This directory contains the stuff for building static html documentations based on sphinx.
Firstly, install the sphinx:
apt-get install python3-sphinx doxygen python3-pip graphvizSecondly, install the packages:
python3 -m pip install -r ./requirements.txtAnd then, make the docs:
doxygen Doxygen # build C++ docs
make htmlAnd the finally the generated html pages will locate in the build/html directory.
The basic way to preview the docs is using the http.serve:
cd build/html
python3 -m http.server 8081And you can visit the page with your web browser with url http://localhost:8081.