Building these docs¶
Install dependencies from
requirements.dev.txtandrequirements.txt.When developing, you can use
sphinx-autobuildto get an development server that automatically refreshes on changes:
# Auto reload dev server:
sphinx-autobuild docs docs/_build/html
To make a ‘production’ build of the docs, run
make htmlfrom thedocs/folder. This will generate a html based structure indocs/_build/html.
# Build docs to docs/_build/html
cd docs && make