fuchanghai 9e91a2bc61 [improvement-#11879]Keyword Search Improvement (#12951) 2 роки тому
..
public 2dbc79693e [feature][task plugin] Add new task plugin for apache linkis (#12693) 2 роки тому
src 9e91a2bc61 [improvement-#11879]Keyword Search Improvement (#12951) 2 роки тому
.env.development 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.env.production 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.eslintignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.eslintrc.js 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.gitignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.prettierignore 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
.prettierrc.js 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
README.md a44817fc46 [Doc][Style] Fix doc format once for all (#12006) 2 роки тому
index.html 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
package.json e5f4ee2d64 [Improvement][UI] Support to drag the column of workflow name to resize its width. (#13006) 2 роки тому
pnpm-lock.yaml e5f4ee2d64 [Improvement][UI] Support to drag the column of workflow name to resize its width. (#13006) 2 роки тому
pom.xml d46e4659d9 [Improvement][Style] Fix remaining style errors and wildcard imports (#12412) 2 роки тому
tsconfig.json 7a7807e520 [Feature] Remove old ui. (#9909) 2 роки тому
vite.config.ts 883c754951 [Feature][UI] Add a method for adding a single node to the dag. (#12628) 2 роки тому

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