To build locallyInstall SphinxRun the command sphinx-build -n . _build in this directory.Open the file _build/index.html in your browser to view.To deploybuild the docs: sphinx-build -n . _buildcheck the buildremove the cached build files rm -fr .doctreesmove the build out of the repo dir: rm -r /tmp/_build; mv _build /tmpcheck out the gh-pages branch: git checkout gh-pages && git pullremove previous files: rm -r *move new files in: mv /tmp/_build/* .commit and push: git add . && git commit -m 'Updated docs' && git push