tree: 6d87d3e4a9eff7a096f108e0591e5b44d76482dd [path history] [tgz]
  1. .vscode/
  2. licenses/
  3. public/
  4. src/
  5. .eslintrc.cjs
  6. .gitignore
  7. .prettierrc.json
  8. env.d.ts
  9. index.html
  10. LICENSE
  11. package.json
  12. pnpm-lock.yaml
  13. pom.xml
  14. README.md
  15. tsconfig.app.json
  16. tsconfig.json
  17. tsconfig.node.json
  18. vite.config.ts
web/README.md

Celeborn Web UI

Celeborn Web is a dashboard to display and manage the Master and Worker of Celeborn. This document introduces how to install and build the UI of Celeborn Web.

⚠️ Important

Before running commands, you must ensure that you are in the front-end directory celeborn/web. If not, run cd web first.


Getting started

Preparation | Framework & Dependencies

TIP

You should use the Pnpm package manager.

Installation

Development environment

  • Run the below command in the console to install the required dependencies.
pnpm install

Compile and Hot-Reload for Development

pnpm dev

Type-Check, Compile and Minify for Production

pnpm build

Lint with ESLint

# Whole project
pnpm lint