Files
pipecat/docs/api/build-docs.sh
2024-12-12 11:06:53 -05:00

10 lines
217 B
Bash
Executable File

#!/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