View the docs here: https://cellulosdocs.readthedocs.io/en/cellulos/
- Install sphinx:
pip install sphinx - Navigate to
./docsand install requirements:pip install -r requirements.txt - Build the html files:
make html - Launch
./build/html/index.htmlto view the site locally- To easily launch from command line, you can add the following to
/bashrc:
export BROWSER="explorer.exe" alias start="explorer.exe"- Navigate to
./build/html/and runstart index.html
- To easily launch from command line, you can add the following to
- Setup venv:
cd docs
python3 -m venv .
source ./bin/activate
python3 -m pip install -r requirements.txt- Build the html files:
make html - Launch:
open ./build/html/index.html