* add task-pure delete some task module to reduce the size of the deployment package * add version of 3.2.2 * Update Chart.yaml Rollback APPversion * remove task pure plugin * fix ci * add pure datasource plugin * remove ck,sr from datasource pure * remove task plugin chunjun ,dms ,datafactory from pure * add api pom dependency * spotless:apply * add dependency license * [maven-release-plugin] prepare release 3.2.2 * [maven-release-plugin] prepare for next development iteration * remove datasource-pure: dolphinscheduler-datasource-sqlserver dolphinscheduler-datasource-oracle remove task-pure: dolphinscheduler-task-dinky dolphinscheduler-task-pytorch dolphinscheduler-task-datasync dolphinscheduler-task-kubeflow dolphinscheduler-task-emr dolphinscheduler-task-pigeon dolphinscheduler-task-flink-stream * add register pure remove jdbc and etcd * add dolphinscheduler-storage-pure remove task of dolphinscheduler-storage-obs dolphinscheduler-storage-abs dolphinscheduler-storage-gcs dolphinscheduler-storage-oss * mvn spotless:apply --------- Co-authored-by: wangxj959 <wangxj959@chinaunicom.cn> Co-authored-by: wangxj <wangxj31> Co-authored-by: wangxj3 <wangxj@apache.org> |
||
|---|---|---|
| .. | ||
| public | ||
| src | ||
| .env.development | ||
| .env.production | ||
| .eslintignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc.js | ||
| README.md | ||
| index.html | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pom.xml | ||
| tsconfig.json | ||
| vite.config.ts | ||
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
UIand 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