update download.tsx for v1.9.0 release
1 file changed
tree: 765cf5af05b6ec87fb6a388dd42294a899551b98
  1. .github/
  2. blog/
  3. community/
  4. docs/
  5. events/
  6. i18n/
  7. scripts/
  8. sidebars/
  9. src/
  10. static/
  11. .asf.yaml
  12. .eslintrc.js
  13. .gitignore
  14. babel.config.js
  15. docusaurus.config.js
  16. eventmesh-multi-runtime.drawio
  17. eventmesh.drawio
  18. LICENCE
  19. package-lock.json
  20. package.json
  21. README.md
  22. tsconfig.json
  23. 未命名绘图.drawio
README.md

Apache EventMesh Website

Development

Clone and install dependencies:

git clone git@github.com:apache/eventmesh-site.git
cd eventmesh-site

npm install

Preview 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 zh

Build and view the website:

npm run build

npm run serve

Sync Documentation from apache/eventmesh

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