This folder builds a static documentation website.
The pages in docs/source/ were initialized from the former repository README files, but are now maintained independently inside docs/.
From the repo root:
conda env create -f docs/env.yaml
conda activate solaris-docs
python -m pip install -r docs/requirements.txt
npm installcd docs
make htmlOpen docs/build/html/index.html in your browser.
cd docs
sphinx-autobuild -b html source build/htmlIt will print a local URL (usually http://127.0.0.1:8000) to open.
cd docs
make clean