DolphinScheduler/dolphinscheduler-ui-next
labbomb efe04863a0
[Refactor][UI Next]Reconstructing the Log Component (#9574)
* Reconstructing the Log Component

* Delete pnpm-lock.yaml

* Delete pnpm-lock.yaml

* add pnpm-lock

* Modify comments
2022-04-19 11:48:53 +08:00
..
public [Fix][UI Next][V1.0.0-Alpha] Fix the task icons not shown in dag page (#9104) 2022-03-23 12:36:15 +08:00
src [Refactor][UI Next]Reconstructing the Log Component (#9574) 2022-04-19 11:48:53 +08:00
.env.development [Docs][UI Next] Add package license. (#8545) 2022-02-26 17:10:21 +08:00
.env.production [Feature][UI Next][V1.0.0-Alpha] remove VITE_APP_PROD_WEB_URL (#8657) 2022-03-02 15:34:27 +08:00
.eslintignore [Improvement] [UI Next][V1.0.0-Alpha] Prettier and ESlint (#8794) 2022-03-10 11:59:23 +08:00
.eslintrc.js [Feature][UI Next][V1.0.0-Alpha] Add the tree chart of the work flow definition to the project management. (#8694) 2022-03-04 14:35:18 +08:00
.gitignore [Feature][UI Next] Add statistics. (#7895) 2022-01-08 17:03:49 +08:00
.prettierignore [Improvement] [UI Next][V1.0.0-Alpha] Prettier and ESlint (#8794) 2022-03-10 11:59:23 +08:00
.prettierrc.js [Feature-7785][UI Next] Add a new page for the module of next ui to manage the task group option. (#8060) 2022-01-16 10:08:42 +08:00
index.html [Fix][UI Next][V1.0.0-Alpha] Fix error when deployed to nginx after compilation (#8767) 2022-03-09 16:31:42 +08:00
package.json [Refactor][UI Next]Reconstructing the Log Component (#9574) 2022-04-19 11:48:53 +08:00
pnpm-lock.yaml [Refactor][UI Next]Reconstructing the Log Component (#9574) 2022-04-19 11:48:53 +08:00
pom.xml [UI] Migrate NPM to PNPM in CI builds (#9431) 2022-04-11 14:16:23 +08:00
README.md [Docs][UI Next][V1.0.0-Alpha] Delete E2E docs. (#9309) 2022-04-01 14:22:01 +08:00
tsconfig.json [Feature][UI Next] Workflow save modal (#8341) 2022-02-11 09:16:05 +08:00
vite.config.ts [Fix][UI Next] Fix build standalone error. (#8590) 2022-03-01 11:18:25 +08:00

Dolphin Scheduler UI Next

After two and a half months of development cycle, we have brought a brand-new UI management system (V1.0.0-Alpha).

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

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