Skip to content

Files

Latest commit

 

History

History

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Docs

This directory contains the instructions for building static html documentations based on sphinx.

Build the docs

Install the packages required for building documentation:

 pip install -r docs/requirements.txt

And then, change directory to docs folder to build the docs.

cd docs/
# To build docs specific to branch
sphinx-build -M html . build
# [Optional] To build docs for all the supporting branches
sphinx-multiversion . build

Preview the docs locally

cd build/html
python -m http.server

You can visit the page with your web browser with url http://localhost:8080.