rockfang de3d9423d1 [Fix-10829][UI] display real workflow relation in `WorkFlow Relation` page (#10836) 2 yıl önce
..
public 5b0347e8da [Task] Add Dinky task to better support the development and execution of FlinkSQL (#10640) 2 yıl önce
src de3d9423d1 [Fix-10829][UI] display real workflow relation in `WorkFlow Relation` page (#10836) 2 yıl önce
.env.development 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.env.production 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.eslintignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.eslintrc.js 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.gitignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.prettierignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
.prettierrc.js 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
README.md 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
index.html 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
package.json f78847d47f [Build][UI] Updated dependencies. (#10813) 2 yıl önce
pnpm-lock.yaml f78847d47f [Build][UI] Updated dependencies. (#10813) 2 yıl önce
pom.xml 15a86071d1 [feat] ui build no inherit from maven proxy (#10590) 2 yıl önce
tsconfig.json 7a7807e520 [Feature] Remove old ui. (#9909) 2 yıl önce
vite.config.ts bc71c3b0a0 [Build][UI] Solve vite config throws terser warning. (#10105) 2 yıl önce

README.md

Dolphin Scheduler UI

Brand new UI management system (Beta).

Compared with the old UI, it will be more standardized, and it will also have a more complete type checking mechanism. At the same time, its speed has made a qualitative leap.

We also provide dark mode and light mode to meet the preferences of different developers. It will make your eyes shine.

If you have tried the new UI and found problems in use, you can contact us through issue.


Start Using

For the best experience, we recommend using node 16.x.x and pnpm 6.x.x. You can learn how to install the corresponding version from their official website.

Install Dependencies

pnpm install

Development Project

To do this you need to change the VITE_APP_DEV_WEB_URL parameter variable in .env.development in the project root directory.

It is worth noting that when you do not change the request path or route, you only need to write http, ip and port without the / symbol at the end, such as http://127.0. 0.1:12345.

pnpm run dev

Build Project

When you are ready to package, you need to modify the VITE_APP_PROD_WEB_URL parameter in .env.production accordingly to ensure that the packaged file can be normally requested to the backend service address.

pnpm run build:prod

Participate Development

Code Format

Usually after you modify the code, you need to perform code formatting operations to ensure that the code in the project is the same style.

pnpm run prettier

Type Checking

If you are involved in the development of the UI, please make sure to perform type checking before submitting the code, and submit it without errors.

vue-tsc --noEmit