This website is built using Docusaurus 2, a modern static website generator.
yarn install
yarn start
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
yarn build
This command generates static content into the build
directory and can be served using any static contents hosting service.
Deployment happens in GitHub Actions to GitHub Pages
To edit files for the current version, update the files under the docs
directory. To edit the files in a previous version, edit the files from versioned_docs/<you version>
.
To add a new version, make sure that the new version content is finalized in the docs
directory, then run:
yarn run docusaurus docs:version <version number>
This will copy the files in the docs
folder to versioned_docs/version-<version number>/
, create a version-<version number>-sidebar.json
file under version_sidebars
and add the version number to the version.json
file.