How To Build
Complete commands:
**cd .sphinx
sphinx-apidoc --ext-autodoc --force -o . ../TikTokLive ../TikTokLive/proto/tiktok_schema_pb2.py
.\make html
Move generated sphinx
/sphinx/_build/html
folder to root, rename to “docs”Add
.nojekyll
file to new docs folder
Alernatively: sphinx-apidoc –ext-autodoc –force -o “.” “../TikTokLive” “../TikTokLive/proto/tiktok_schema_pb2.py” ; Remove-Item “._build” -Recurse ; .\make html ; Remove-Item -Path “..\docs” -Recurse ; Rename-Item “ ._build\html” “docs”; Move-Item -Path “._build\docs” -Destination “..”