Add README and build script for local testing

This commit is contained in:
Mark Backman
2024-12-12 11:06:53 -05:00
parent 414dcf9810
commit e14399727b
2 changed files with 88 additions and 0 deletions

10
docs/api/build-docs.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Clean previous build
rm -rf _build
# Build docs matching ReadTheDocs configuration
sphinx-build -b html -d _build/doctrees . _build/html -W --keep-going
# Open docs (MacOS)
open _build/html/index.html