This website is built using Docusaurus 2, a modern static website generator.
yarn install
yarn start
This command starts a local development server and opens 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 with the following command:
yarn serve
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages
branch.
The versioning is done in two steps:
-
Delete the entry
Stable
from the file/versions.json
-
Copy the content from the
Next
version intoStable
yarn run docusaurus docs:version Stable
The versioning command will generate the following content:
-
The entry
Stable
will be added (again) to the/versions.json
file -
/versioned_docs/version-Stable
will be updated with theNext
content located in/docs
-
/versioned_sidebars/version-Stable-sidebars.json
will be updated with theNext
sidebar content located in/sidebar.js
Before creating a Pull Request for adding new docs or creating a new version, it's strongly encouraged to build the docs site as described above