The official FiftyOne documentation, available at fiftyone.ai.
This project uses Sphinx and Sphinx-Napoleon to generate its documentation and API reference from source.
You can build the docs from source by running the generate_docs.bash script
in this folder:
bash generate_docs.bashThe script expects that you have performed a developer install of fiftyone
(see main README) and that the
fiftyone-brain package is installed in your environment.
A couple noteable flags are supported:
-cperforms a clean build by removing thedocs/buildfolder beforehand. This is sometimes necessary to force updates, e.g. if you have edited a template and want to see how it affects pages whose source files haven't changed-swill update static files only, i.e.custom.cssandcustom.jsmentioned below
The main content is located in the docs/source folder. The files are written
in Sphinx RST format.
The API documentation is automatically generated from the Python source code, whose docstrings are written in Sphinx-Napoleon format.
Check out the existing patterns in the source files and you'll catch on.
All documentation, including RST and all code samples embedded in it, must follow our style guide.
Note that pre-commit hooks will automatically enforce the whitespace-related components of our style when you commit changes.
Theme files are located in the docs/theme folder. However, you should prefer
to make changes in the following locations instead of the theme itself whenever
possible:
docs/source/_staticcontainscustom.cssandcustom.jsfiles, where any CSS overrides or custom JS should be addeddocs/source/_templatescontains HTML files (Jinja2 templates) that override theme templates of the same name. These should extend the theme templates - see the existing templates for how to do this. If you need to override part of the theme template that isn't conveniently marked as a block (and isn't a separate file that you can override), our convention is to add a block prefixed withcustom_to the theme template, then override that block locally
To work on the theme JavaScript (not custom.js), you will need to install a
couple dependencies for the build process:
cd docs/theme
yarn installA few commands are available:
yarn buildbundles all JS files into the single file expected by the themeyarn deploybuilds and copies this file into the built documentation (which avoids the need to rungenerate_docs.bashagain)yarn watchre-runsyarn deploywhenever a JS source file changes