Clone and install dependencies:
git clone [email protected]:apache/eventmesh-site.git
cd eventmesh-site
npm installPreview the website in development mode:
# Start the website with English documentations
npm run start -- --locale en
# Start the website with Chinese documentations
npm run start -- --locale zhBuild and view the website:
npm run build
npm run serveBefore you commit your changes, you can check the style of the contents by running the following command:
$ npm run autocorrect --lintAnd then follow the instructions to fix the style issues.
The npm run fetch script (scripts/fetch.ts) clones the apache/eventmesh repository and copies the documentations to docs and i18n/zh/docusaurus-plugin-content-docs. To update the documentation, please create a pull request in the apache/eventmesh repository.
npm run fetch
npm run start -- --locale en