This website is built using Docusaurus, a modern static website generator.
yarnyarn startThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
yarn buildThis command generates static content into the build directory and can be served using any static contents hosting
service.
Using SSH:
USE_SSH=true yarn deployNot using SSH:
GIT_USER=<Your GitHub username> yarn deployIf you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the
gh-pages branch.
- Every push to
developbranch creates a new patch release. The version number is automatically incremented. - In Docker Hub, a new image is created with a version tag like
preview-0.9.1. - Add the changes to the
Unreleasedsection of the CHANGELOG. If noUnreleasedsection exists, create one at the top of the changelog. - If the change is related to a customer issue, report back to the customer with the preview image tag and a link to the changelog entry.
- At the end of a development cycle, create a PR to merge
developintomain. - After the merge, the version number is automatically incremented to the next minor version.
- In Docker Hub, a new image is created with a version tag like
0.9.0andlatest. - Update the changelog by renaming the
Unreleasedsection to the new version and date, and add any additional changes that were not included in patch releases.
To create a new stable documentation version, run npm run update-stable-version. This will:
- Make the current
docs/content available underversioned_docs/version-stable/ - Every change that was made in the
docs/directory will be available in the main documentation now.