分布式调度框架。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
小可耐 920ac154cb
[Improvement-15744][parameter] project parameter add update time and update user id (#15745)
3 weeks ago
..
public [Feature-15475][DinkyTask] DinkyTask supports Dinky-1.0.0 and common sql (#15479) 3 months ago
src [Improvement-15744][parameter] project parameter add update time and update user id (#15745) 3 weeks ago
.env.development [Feature] Remove old ui. (#9909) 2 years ago
.env.production [Feature] Remove old ui. (#9909) 2 years ago
.eslintignore [Feature] Remove old ui. (#9909) 2 years ago
.eslintrc.js [Feature] Remove old ui. (#9909) 2 years ago
.gitignore [Feature] Remove old ui. (#9909) 2 years ago
.prettierignore [Feature] Remove old ui. (#9909) 2 years ago
.prettierrc.js [Feature] Remove old ui. (#9909) 2 years ago
README.md [doc] Remove excess space (#13388) 1 year ago
index.html [Feature] Remove old ui. (#9909) 2 years ago
package.json [Improvement-14318][UI] migrate version 2.x workflow definition d3 tree view to version 3.x (#14382) 10 months ago
pnpm-lock.yaml [Feature-15146][dolphinscheduler-task-sqoop] add sqoop source/target type (#15146) 4 months ago
pom.xml chore: Add new step skip for ui build and spotless (#14427) 10 months ago
tsconfig.json [Feature] Remove old ui. (#9909) 2 years ago
vite.config.ts [Feature][UI] Add a method for adding a single node to the dag. (#12628) 1 year ago

README.md

Dolphin Scheduler UI

Brand new UI management system (V3.0.0-Release).

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 7.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