From 2eaac168dc1fe6f85100732a14eb4e28d7a250c5 Mon Sep 17 00:00:00 2001 From: Junyan Qin Date: Mon, 28 Apr 2025 21:41:03 +0800 Subject: [PATCH] chore: rename `web_ui` dir to `web` --- .gitignore | 1 - {web_ui => web}/.gitignore | 0 {web_ui => web}/.husky/pre-commit | 0 {web_ui => web}/.lintstagedrc.json | 0 {web_ui => web}/.prettierrc.mjs | 0 {web_ui => web}/README.md | 0 {web_ui => web}/eslint.config.mjs | 0 {web_ui => web}/next.config.ts | 0 {web_ui => web}/package-lock.json | 0 {web_ui => web}/package.json | 0 {web_ui => web}/public/file.svg | 0 {web_ui => web}/public/globe.svg | 0 {web_ui => web}/public/next.svg | 0 {web_ui => web}/public/vercel.svg | 0 {web_ui => web}/public/window.svg | 0 {web_ui => web}/src/app/favicon.ico | Bin {web_ui => web}/src/app/global.css | 0 .../src/app/home/bots/ICreateBotField.ts | 0 .../src/app/home/bots/botConfig.module.css | 0 .../app/home/bots/components/bot-card/BotCard.tsx | 0 .../app/home/bots/components/bot-card/BotCardVO.ts | 0 .../components/bot-card/CreateBotCardComponent.tsx | 0 .../bots/components/bot-card/botCard.module.css | 0 .../app/home/bots/components/bot-form/BotForm.tsx | 0 .../home/bots/components/bot-form/BotFormEntity.ts | 0 .../bots/components/bot-form/ChooseAdapterEntity.ts | 0 {web_ui => web}/src/app/home/bots/page.tsx | 0 .../dynamic-form/DynamicFormComponent.tsx | 0 .../dynamic-form/DynamicFormItemComponent.tsx | 0 .../dynamic-form/DynamicFormItemConfig.ts | 0 .../dynamic-form/testDynamicConfigList.ts | 0 .../EmptyAndCreateComponent.tsx | 0 .../emptyAndCreate.module.css | 0 .../components/home-sidebar/HomeSidebar.module.css | 0 .../home/components/home-sidebar/HomeSidebar.tsx | 0 .../components/home-sidebar/HomeSidebarChild.tsx | 0 .../components/home-sidebar/sidbarConfigList.ts | 0 .../home/components/home-titlebar/HomeTitleBar.tsx | 0 .../home-titlebar/HomeTittleBar.module.css | 0 {web_ui => web}/src/app/home/layout.module.css | 0 {web_ui => web}/src/app/home/layout.tsx | 0 {web_ui => web}/src/app/home/mock-api/index.ts | 0 .../src/app/home/models/ICreateLLMField.ts | 0 .../src/app/home/models/LLMConfig.module.css | 0 .../app/home/models/component/llm-card/LLMCard.tsx | 0 .../app/home/models/component/llm-card/LLMCardVO.ts | 0 .../component/llm-form/ChooseAdapterEntity.ts | 0 .../app/home/models/component/llm-form/LLMForm.tsx | 0 {web_ui => web}/src/app/home/models/page.tsx | 0 {web_ui => web}/src/app/home/page.tsx | 0 .../pipeline-card/PipelineCardComponent.tsx | 0 .../components/pipeline-card/PipelineCardVO.ts | 0 .../pipeline-card/pipelineCard.module.css | 0 .../pipeline-form/PipelineChildFormEntity.ts | 0 .../pipeline-form/PipelineFormComponent.tsx | 0 .../pipeline-form/pipelineFormStyle.module.css | 0 {web_ui => web}/src/app/home/pipelines/page.tsx | 0 .../app/home/pipelines/pipelineConfig.module.css | 0 {web_ui => web}/src/app/home/plugins/page.tsx | 0 .../home/plugins/plugin-installed/PluginCardVO.ts | 0 .../plugin-installed/PluginInstalledComponent.tsx | 0 .../plugin-card/PluginCardComponent.tsx | 0 .../plugin-card/pluginCard.module.css | 0 .../plugins/plugin-market/PluginMarketComponent.tsx | 0 .../PluginMarketCardComponent.tsx | 0 .../plugin-market-card/PluginMarketCardVO.ts | 0 .../plugin-market-card/pluginMarketCard.module.css | 0 .../src/app/home/plugins/plugins.module.css | 0 .../src/app/infra/api/api-types/index.ts | 0 .../api/api-types/pipelines/GetMetaDataResponse.ts | 0 .../create-card-component/CreateCardComponent.tsx | 0 .../createCartComponent.module.css | 0 {web_ui => web}/src/app/infra/basic-types/I18N.ts | 0 {web_ui => web}/src/app/infra/http/HttpClient.ts | 0 {web_ui => web}/src/app/layout.tsx | 0 {web_ui => web}/src/app/login/layout.tsx | 0 {web_ui => web}/src/app/login/login.module.css | 0 {web_ui => web}/src/app/login/page.tsx | 0 {web_ui => web}/src/app/not-found.tsx | 0 {web_ui => web}/src/app/page.tsx | 0 {web_ui => web}/tsconfig.json | 0 81 files changed, 1 deletion(-) rename {web_ui => web}/.gitignore (100%) rename {web_ui => web}/.husky/pre-commit (100%) rename {web_ui => web}/.lintstagedrc.json (100%) rename {web_ui => web}/.prettierrc.mjs (100%) rename {web_ui => web}/README.md (100%) rename {web_ui => web}/eslint.config.mjs (100%) rename {web_ui => web}/next.config.ts (100%) rename {web_ui => web}/package-lock.json (100%) rename {web_ui => web}/package.json (100%) rename {web_ui => web}/public/file.svg (100%) rename {web_ui => web}/public/globe.svg (100%) rename {web_ui => web}/public/next.svg (100%) rename {web_ui => web}/public/vercel.svg (100%) rename {web_ui => web}/public/window.svg (100%) rename {web_ui => web}/src/app/favicon.ico (100%) rename {web_ui => web}/src/app/global.css (100%) rename {web_ui => web}/src/app/home/bots/ICreateBotField.ts (100%) rename {web_ui => web}/src/app/home/bots/botConfig.module.css (100%) rename {web_ui => web}/src/app/home/bots/components/bot-card/BotCard.tsx (100%) rename {web_ui => web}/src/app/home/bots/components/bot-card/BotCardVO.ts (100%) rename {web_ui => web}/src/app/home/bots/components/bot-card/CreateBotCardComponent.tsx (100%) rename {web_ui => web}/src/app/home/bots/components/bot-card/botCard.module.css (100%) rename {web_ui => web}/src/app/home/bots/components/bot-form/BotForm.tsx (100%) rename {web_ui => web}/src/app/home/bots/components/bot-form/BotFormEntity.ts (100%) rename {web_ui => web}/src/app/home/bots/components/bot-form/ChooseAdapterEntity.ts (100%) rename {web_ui => web}/src/app/home/bots/page.tsx (100%) rename {web_ui => web}/src/app/home/components/dynamic-form/DynamicFormComponent.tsx (100%) rename {web_ui => web}/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx (100%) rename {web_ui => web}/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts (100%) rename {web_ui => web}/src/app/home/components/dynamic-form/testDynamicConfigList.ts (100%) rename {web_ui => web}/src/app/home/components/empty-and-create-component/EmptyAndCreateComponent.tsx (100%) rename {web_ui => web}/src/app/home/components/empty-and-create-component/emptyAndCreate.module.css (100%) rename {web_ui => web}/src/app/home/components/home-sidebar/HomeSidebar.module.css (100%) rename {web_ui => web}/src/app/home/components/home-sidebar/HomeSidebar.tsx (100%) rename {web_ui => web}/src/app/home/components/home-sidebar/HomeSidebarChild.tsx (100%) rename {web_ui => web}/src/app/home/components/home-sidebar/sidbarConfigList.ts (100%) rename {web_ui => web}/src/app/home/components/home-titlebar/HomeTitleBar.tsx (100%) rename {web_ui => web}/src/app/home/components/home-titlebar/HomeTittleBar.module.css (100%) rename {web_ui => web}/src/app/home/layout.module.css (100%) rename {web_ui => web}/src/app/home/layout.tsx (100%) rename {web_ui => web}/src/app/home/mock-api/index.ts (100%) rename {web_ui => web}/src/app/home/models/ICreateLLMField.ts (100%) rename {web_ui => web}/src/app/home/models/LLMConfig.module.css (100%) rename {web_ui => web}/src/app/home/models/component/llm-card/LLMCard.tsx (100%) rename {web_ui => web}/src/app/home/models/component/llm-card/LLMCardVO.ts (100%) rename {web_ui => web}/src/app/home/models/component/llm-form/ChooseAdapterEntity.ts (100%) rename {web_ui => web}/src/app/home/models/component/llm-form/LLMForm.tsx (100%) rename {web_ui => web}/src/app/home/models/page.tsx (100%) rename {web_ui => web}/src/app/home/page.tsx (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-card/PipelineCardComponent.tsx (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-form/PipelineChildFormEntity.ts (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx (100%) rename {web_ui => web}/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css (100%) rename {web_ui => web}/src/app/home/pipelines/page.tsx (100%) rename {web_ui => web}/src/app/home/pipelines/pipelineConfig.module.css (100%) rename {web_ui => web}/src/app/home/plugins/page.tsx (100%) rename {web_ui => web}/src/app/home/plugins/plugin-installed/PluginCardVO.ts (100%) rename {web_ui => web}/src/app/home/plugins/plugin-installed/PluginInstalledComponent.tsx (100%) rename {web_ui => web}/src/app/home/plugins/plugin-installed/plugin-card/PluginCardComponent.tsx (100%) rename {web_ui => web}/src/app/home/plugins/plugin-installed/plugin-card/pluginCard.module.css (100%) rename {web_ui => web}/src/app/home/plugins/plugin-market/PluginMarketComponent.tsx (100%) rename {web_ui => web}/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx (100%) rename {web_ui => web}/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardVO.ts (100%) rename {web_ui => web}/src/app/home/plugins/plugin-market/plugin-market-card/pluginMarketCard.module.css (100%) rename {web_ui => web}/src/app/home/plugins/plugins.module.css (100%) rename {web_ui => web}/src/app/infra/api/api-types/index.ts (100%) rename {web_ui => web}/src/app/infra/api/api-types/pipelines/GetMetaDataResponse.ts (100%) rename {web_ui => web}/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx (100%) rename {web_ui => web}/src/app/infra/basic-component/create-card-component/createCartComponent.module.css (100%) rename {web_ui => web}/src/app/infra/basic-types/I18N.ts (100%) rename {web_ui => web}/src/app/infra/http/HttpClient.ts (100%) rename {web_ui => web}/src/app/layout.tsx (100%) rename {web_ui => web}/src/app/login/layout.tsx (100%) rename {web_ui => web}/src/app/login/login.module.css (100%) rename {web_ui => web}/src/app/login/page.tsx (100%) rename {web_ui => web}/src/app/not-found.tsx (100%) rename {web_ui => web}/src/app/page.tsx (100%) rename {web_ui => web}/tsconfig.json (100%) diff --git a/.gitignore b/.gitignore index bfd0e3f2..17271201 100644 --- a/.gitignore +++ b/.gitignore @@ -39,4 +39,3 @@ botpy.log* /libs/wecom_api/test.py /venv /jp-tyo-churros-05.rockchin.top -web/ \ No newline at end of file diff --git a/web_ui/.gitignore b/web/.gitignore similarity index 100% rename from web_ui/.gitignore rename to web/.gitignore diff --git a/web_ui/.husky/pre-commit b/web/.husky/pre-commit similarity index 100% rename from web_ui/.husky/pre-commit rename to web/.husky/pre-commit diff --git a/web_ui/.lintstagedrc.json b/web/.lintstagedrc.json similarity index 100% rename from web_ui/.lintstagedrc.json rename to web/.lintstagedrc.json diff --git a/web_ui/.prettierrc.mjs b/web/.prettierrc.mjs similarity index 100% rename from web_ui/.prettierrc.mjs rename to web/.prettierrc.mjs diff --git a/web_ui/README.md b/web/README.md similarity index 100% rename from web_ui/README.md rename to web/README.md diff --git a/web_ui/eslint.config.mjs b/web/eslint.config.mjs similarity index 100% rename from web_ui/eslint.config.mjs rename to web/eslint.config.mjs diff --git a/web_ui/next.config.ts b/web/next.config.ts similarity index 100% rename from web_ui/next.config.ts rename to web/next.config.ts diff --git a/web_ui/package-lock.json b/web/package-lock.json similarity index 100% rename from web_ui/package-lock.json rename to web/package-lock.json diff --git a/web_ui/package.json b/web/package.json similarity index 100% rename from web_ui/package.json rename to web/package.json diff --git a/web_ui/public/file.svg b/web/public/file.svg similarity index 100% rename from web_ui/public/file.svg rename to web/public/file.svg diff --git a/web_ui/public/globe.svg b/web/public/globe.svg similarity index 100% rename from web_ui/public/globe.svg rename to web/public/globe.svg diff --git a/web_ui/public/next.svg b/web/public/next.svg similarity index 100% rename from web_ui/public/next.svg rename to web/public/next.svg diff --git a/web_ui/public/vercel.svg b/web/public/vercel.svg similarity index 100% rename from web_ui/public/vercel.svg rename to web/public/vercel.svg diff --git a/web_ui/public/window.svg b/web/public/window.svg similarity index 100% rename from web_ui/public/window.svg rename to web/public/window.svg diff --git a/web_ui/src/app/favicon.ico b/web/src/app/favicon.ico similarity index 100% rename from web_ui/src/app/favicon.ico rename to web/src/app/favicon.ico diff --git a/web_ui/src/app/global.css b/web/src/app/global.css similarity index 100% rename from web_ui/src/app/global.css rename to web/src/app/global.css diff --git a/web_ui/src/app/home/bots/ICreateBotField.ts b/web/src/app/home/bots/ICreateBotField.ts similarity index 100% rename from web_ui/src/app/home/bots/ICreateBotField.ts rename to web/src/app/home/bots/ICreateBotField.ts diff --git a/web_ui/src/app/home/bots/botConfig.module.css b/web/src/app/home/bots/botConfig.module.css similarity index 100% rename from web_ui/src/app/home/bots/botConfig.module.css rename to web/src/app/home/bots/botConfig.module.css diff --git a/web_ui/src/app/home/bots/components/bot-card/BotCard.tsx b/web/src/app/home/bots/components/bot-card/BotCard.tsx similarity index 100% rename from web_ui/src/app/home/bots/components/bot-card/BotCard.tsx rename to web/src/app/home/bots/components/bot-card/BotCard.tsx diff --git a/web_ui/src/app/home/bots/components/bot-card/BotCardVO.ts b/web/src/app/home/bots/components/bot-card/BotCardVO.ts similarity index 100% rename from web_ui/src/app/home/bots/components/bot-card/BotCardVO.ts rename to web/src/app/home/bots/components/bot-card/BotCardVO.ts diff --git a/web_ui/src/app/home/bots/components/bot-card/CreateBotCardComponent.tsx b/web/src/app/home/bots/components/bot-card/CreateBotCardComponent.tsx similarity index 100% rename from web_ui/src/app/home/bots/components/bot-card/CreateBotCardComponent.tsx rename to web/src/app/home/bots/components/bot-card/CreateBotCardComponent.tsx diff --git a/web_ui/src/app/home/bots/components/bot-card/botCard.module.css b/web/src/app/home/bots/components/bot-card/botCard.module.css similarity index 100% rename from web_ui/src/app/home/bots/components/bot-card/botCard.module.css rename to web/src/app/home/bots/components/bot-card/botCard.module.css diff --git a/web_ui/src/app/home/bots/components/bot-form/BotForm.tsx b/web/src/app/home/bots/components/bot-form/BotForm.tsx similarity index 100% rename from web_ui/src/app/home/bots/components/bot-form/BotForm.tsx rename to web/src/app/home/bots/components/bot-form/BotForm.tsx diff --git a/web_ui/src/app/home/bots/components/bot-form/BotFormEntity.ts b/web/src/app/home/bots/components/bot-form/BotFormEntity.ts similarity index 100% rename from web_ui/src/app/home/bots/components/bot-form/BotFormEntity.ts rename to web/src/app/home/bots/components/bot-form/BotFormEntity.ts diff --git a/web_ui/src/app/home/bots/components/bot-form/ChooseAdapterEntity.ts b/web/src/app/home/bots/components/bot-form/ChooseAdapterEntity.ts similarity index 100% rename from web_ui/src/app/home/bots/components/bot-form/ChooseAdapterEntity.ts rename to web/src/app/home/bots/components/bot-form/ChooseAdapterEntity.ts diff --git a/web_ui/src/app/home/bots/page.tsx b/web/src/app/home/bots/page.tsx similarity index 100% rename from web_ui/src/app/home/bots/page.tsx rename to web/src/app/home/bots/page.tsx diff --git a/web_ui/src/app/home/components/dynamic-form/DynamicFormComponent.tsx b/web/src/app/home/components/dynamic-form/DynamicFormComponent.tsx similarity index 100% rename from web_ui/src/app/home/components/dynamic-form/DynamicFormComponent.tsx rename to web/src/app/home/components/dynamic-form/DynamicFormComponent.tsx diff --git a/web_ui/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx b/web/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx similarity index 100% rename from web_ui/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx rename to web/src/app/home/components/dynamic-form/DynamicFormItemComponent.tsx diff --git a/web_ui/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts b/web/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts similarity index 100% rename from web_ui/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts rename to web/src/app/home/components/dynamic-form/DynamicFormItemConfig.ts diff --git a/web_ui/src/app/home/components/dynamic-form/testDynamicConfigList.ts b/web/src/app/home/components/dynamic-form/testDynamicConfigList.ts similarity index 100% rename from web_ui/src/app/home/components/dynamic-form/testDynamicConfigList.ts rename to web/src/app/home/components/dynamic-form/testDynamicConfigList.ts diff --git a/web_ui/src/app/home/components/empty-and-create-component/EmptyAndCreateComponent.tsx b/web/src/app/home/components/empty-and-create-component/EmptyAndCreateComponent.tsx similarity index 100% rename from web_ui/src/app/home/components/empty-and-create-component/EmptyAndCreateComponent.tsx rename to web/src/app/home/components/empty-and-create-component/EmptyAndCreateComponent.tsx diff --git a/web_ui/src/app/home/components/empty-and-create-component/emptyAndCreate.module.css b/web/src/app/home/components/empty-and-create-component/emptyAndCreate.module.css similarity index 100% rename from web_ui/src/app/home/components/empty-and-create-component/emptyAndCreate.module.css rename to web/src/app/home/components/empty-and-create-component/emptyAndCreate.module.css diff --git a/web_ui/src/app/home/components/home-sidebar/HomeSidebar.module.css b/web/src/app/home/components/home-sidebar/HomeSidebar.module.css similarity index 100% rename from web_ui/src/app/home/components/home-sidebar/HomeSidebar.module.css rename to web/src/app/home/components/home-sidebar/HomeSidebar.module.css diff --git a/web_ui/src/app/home/components/home-sidebar/HomeSidebar.tsx b/web/src/app/home/components/home-sidebar/HomeSidebar.tsx similarity index 100% rename from web_ui/src/app/home/components/home-sidebar/HomeSidebar.tsx rename to web/src/app/home/components/home-sidebar/HomeSidebar.tsx diff --git a/web_ui/src/app/home/components/home-sidebar/HomeSidebarChild.tsx b/web/src/app/home/components/home-sidebar/HomeSidebarChild.tsx similarity index 100% rename from web_ui/src/app/home/components/home-sidebar/HomeSidebarChild.tsx rename to web/src/app/home/components/home-sidebar/HomeSidebarChild.tsx diff --git a/web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts b/web/src/app/home/components/home-sidebar/sidbarConfigList.ts similarity index 100% rename from web_ui/src/app/home/components/home-sidebar/sidbarConfigList.ts rename to web/src/app/home/components/home-sidebar/sidbarConfigList.ts diff --git a/web_ui/src/app/home/components/home-titlebar/HomeTitleBar.tsx b/web/src/app/home/components/home-titlebar/HomeTitleBar.tsx similarity index 100% rename from web_ui/src/app/home/components/home-titlebar/HomeTitleBar.tsx rename to web/src/app/home/components/home-titlebar/HomeTitleBar.tsx diff --git a/web_ui/src/app/home/components/home-titlebar/HomeTittleBar.module.css b/web/src/app/home/components/home-titlebar/HomeTittleBar.module.css similarity index 100% rename from web_ui/src/app/home/components/home-titlebar/HomeTittleBar.module.css rename to web/src/app/home/components/home-titlebar/HomeTittleBar.module.css diff --git a/web_ui/src/app/home/layout.module.css b/web/src/app/home/layout.module.css similarity index 100% rename from web_ui/src/app/home/layout.module.css rename to web/src/app/home/layout.module.css diff --git a/web_ui/src/app/home/layout.tsx b/web/src/app/home/layout.tsx similarity index 100% rename from web_ui/src/app/home/layout.tsx rename to web/src/app/home/layout.tsx diff --git a/web_ui/src/app/home/mock-api/index.ts b/web/src/app/home/mock-api/index.ts similarity index 100% rename from web_ui/src/app/home/mock-api/index.ts rename to web/src/app/home/mock-api/index.ts diff --git a/web_ui/src/app/home/models/ICreateLLMField.ts b/web/src/app/home/models/ICreateLLMField.ts similarity index 100% rename from web_ui/src/app/home/models/ICreateLLMField.ts rename to web/src/app/home/models/ICreateLLMField.ts diff --git a/web_ui/src/app/home/models/LLMConfig.module.css b/web/src/app/home/models/LLMConfig.module.css similarity index 100% rename from web_ui/src/app/home/models/LLMConfig.module.css rename to web/src/app/home/models/LLMConfig.module.css diff --git a/web_ui/src/app/home/models/component/llm-card/LLMCard.tsx b/web/src/app/home/models/component/llm-card/LLMCard.tsx similarity index 100% rename from web_ui/src/app/home/models/component/llm-card/LLMCard.tsx rename to web/src/app/home/models/component/llm-card/LLMCard.tsx diff --git a/web_ui/src/app/home/models/component/llm-card/LLMCardVO.ts b/web/src/app/home/models/component/llm-card/LLMCardVO.ts similarity index 100% rename from web_ui/src/app/home/models/component/llm-card/LLMCardVO.ts rename to web/src/app/home/models/component/llm-card/LLMCardVO.ts diff --git a/web_ui/src/app/home/models/component/llm-form/ChooseAdapterEntity.ts b/web/src/app/home/models/component/llm-form/ChooseAdapterEntity.ts similarity index 100% rename from web_ui/src/app/home/models/component/llm-form/ChooseAdapterEntity.ts rename to web/src/app/home/models/component/llm-form/ChooseAdapterEntity.ts diff --git a/web_ui/src/app/home/models/component/llm-form/LLMForm.tsx b/web/src/app/home/models/component/llm-form/LLMForm.tsx similarity index 100% rename from web_ui/src/app/home/models/component/llm-form/LLMForm.tsx rename to web/src/app/home/models/component/llm-form/LLMForm.tsx diff --git a/web_ui/src/app/home/models/page.tsx b/web/src/app/home/models/page.tsx similarity index 100% rename from web_ui/src/app/home/models/page.tsx rename to web/src/app/home/models/page.tsx diff --git a/web_ui/src/app/home/page.tsx b/web/src/app/home/page.tsx similarity index 100% rename from web_ui/src/app/home/page.tsx rename to web/src/app/home/page.tsx diff --git a/web_ui/src/app/home/pipelines/components/pipeline-card/PipelineCardComponent.tsx b/web/src/app/home/pipelines/components/pipeline-card/PipelineCardComponent.tsx similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-card/PipelineCardComponent.tsx rename to web/src/app/home/pipelines/components/pipeline-card/PipelineCardComponent.tsx diff --git a/web_ui/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts b/web/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts rename to web/src/app/home/pipelines/components/pipeline-card/PipelineCardVO.ts diff --git a/web_ui/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css b/web/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css rename to web/src/app/home/pipelines/components/pipeline-card/pipelineCard.module.css diff --git a/web_ui/src/app/home/pipelines/components/pipeline-form/PipelineChildFormEntity.ts b/web/src/app/home/pipelines/components/pipeline-form/PipelineChildFormEntity.ts similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-form/PipelineChildFormEntity.ts rename to web/src/app/home/pipelines/components/pipeline-form/PipelineChildFormEntity.ts diff --git a/web_ui/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx b/web/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx rename to web/src/app/home/pipelines/components/pipeline-form/PipelineFormComponent.tsx diff --git a/web_ui/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css b/web/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css similarity index 100% rename from web_ui/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css rename to web/src/app/home/pipelines/components/pipeline-form/pipelineFormStyle.module.css diff --git a/web_ui/src/app/home/pipelines/page.tsx b/web/src/app/home/pipelines/page.tsx similarity index 100% rename from web_ui/src/app/home/pipelines/page.tsx rename to web/src/app/home/pipelines/page.tsx diff --git a/web_ui/src/app/home/pipelines/pipelineConfig.module.css b/web/src/app/home/pipelines/pipelineConfig.module.css similarity index 100% rename from web_ui/src/app/home/pipelines/pipelineConfig.module.css rename to web/src/app/home/pipelines/pipelineConfig.module.css diff --git a/web_ui/src/app/home/plugins/page.tsx b/web/src/app/home/plugins/page.tsx similarity index 100% rename from web_ui/src/app/home/plugins/page.tsx rename to web/src/app/home/plugins/page.tsx diff --git a/web_ui/src/app/home/plugins/plugin-installed/PluginCardVO.ts b/web/src/app/home/plugins/plugin-installed/PluginCardVO.ts similarity index 100% rename from web_ui/src/app/home/plugins/plugin-installed/PluginCardVO.ts rename to web/src/app/home/plugins/plugin-installed/PluginCardVO.ts diff --git a/web_ui/src/app/home/plugins/plugin-installed/PluginInstalledComponent.tsx b/web/src/app/home/plugins/plugin-installed/PluginInstalledComponent.tsx similarity index 100% rename from web_ui/src/app/home/plugins/plugin-installed/PluginInstalledComponent.tsx rename to web/src/app/home/plugins/plugin-installed/PluginInstalledComponent.tsx diff --git a/web_ui/src/app/home/plugins/plugin-installed/plugin-card/PluginCardComponent.tsx b/web/src/app/home/plugins/plugin-installed/plugin-card/PluginCardComponent.tsx similarity index 100% rename from web_ui/src/app/home/plugins/plugin-installed/plugin-card/PluginCardComponent.tsx rename to web/src/app/home/plugins/plugin-installed/plugin-card/PluginCardComponent.tsx diff --git a/web_ui/src/app/home/plugins/plugin-installed/plugin-card/pluginCard.module.css b/web/src/app/home/plugins/plugin-installed/plugin-card/pluginCard.module.css similarity index 100% rename from web_ui/src/app/home/plugins/plugin-installed/plugin-card/pluginCard.module.css rename to web/src/app/home/plugins/plugin-installed/plugin-card/pluginCard.module.css diff --git a/web_ui/src/app/home/plugins/plugin-market/PluginMarketComponent.tsx b/web/src/app/home/plugins/plugin-market/PluginMarketComponent.tsx similarity index 100% rename from web_ui/src/app/home/plugins/plugin-market/PluginMarketComponent.tsx rename to web/src/app/home/plugins/plugin-market/PluginMarketComponent.tsx diff --git a/web_ui/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx b/web/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx similarity index 100% rename from web_ui/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx rename to web/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardComponent.tsx diff --git a/web_ui/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardVO.ts b/web/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardVO.ts similarity index 100% rename from web_ui/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardVO.ts rename to web/src/app/home/plugins/plugin-market/plugin-market-card/PluginMarketCardVO.ts diff --git a/web_ui/src/app/home/plugins/plugin-market/plugin-market-card/pluginMarketCard.module.css b/web/src/app/home/plugins/plugin-market/plugin-market-card/pluginMarketCard.module.css similarity index 100% rename from web_ui/src/app/home/plugins/plugin-market/plugin-market-card/pluginMarketCard.module.css rename to web/src/app/home/plugins/plugin-market/plugin-market-card/pluginMarketCard.module.css diff --git a/web_ui/src/app/home/plugins/plugins.module.css b/web/src/app/home/plugins/plugins.module.css similarity index 100% rename from web_ui/src/app/home/plugins/plugins.module.css rename to web/src/app/home/plugins/plugins.module.css diff --git a/web_ui/src/app/infra/api/api-types/index.ts b/web/src/app/infra/api/api-types/index.ts similarity index 100% rename from web_ui/src/app/infra/api/api-types/index.ts rename to web/src/app/infra/api/api-types/index.ts diff --git a/web_ui/src/app/infra/api/api-types/pipelines/GetMetaDataResponse.ts b/web/src/app/infra/api/api-types/pipelines/GetMetaDataResponse.ts similarity index 100% rename from web_ui/src/app/infra/api/api-types/pipelines/GetMetaDataResponse.ts rename to web/src/app/infra/api/api-types/pipelines/GetMetaDataResponse.ts diff --git a/web_ui/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx b/web/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx similarity index 100% rename from web_ui/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx rename to web/src/app/infra/basic-component/create-card-component/CreateCardComponent.tsx diff --git a/web_ui/src/app/infra/basic-component/create-card-component/createCartComponent.module.css b/web/src/app/infra/basic-component/create-card-component/createCartComponent.module.css similarity index 100% rename from web_ui/src/app/infra/basic-component/create-card-component/createCartComponent.module.css rename to web/src/app/infra/basic-component/create-card-component/createCartComponent.module.css diff --git a/web_ui/src/app/infra/basic-types/I18N.ts b/web/src/app/infra/basic-types/I18N.ts similarity index 100% rename from web_ui/src/app/infra/basic-types/I18N.ts rename to web/src/app/infra/basic-types/I18N.ts diff --git a/web_ui/src/app/infra/http/HttpClient.ts b/web/src/app/infra/http/HttpClient.ts similarity index 100% rename from web_ui/src/app/infra/http/HttpClient.ts rename to web/src/app/infra/http/HttpClient.ts diff --git a/web_ui/src/app/layout.tsx b/web/src/app/layout.tsx similarity index 100% rename from web_ui/src/app/layout.tsx rename to web/src/app/layout.tsx diff --git a/web_ui/src/app/login/layout.tsx b/web/src/app/login/layout.tsx similarity index 100% rename from web_ui/src/app/login/layout.tsx rename to web/src/app/login/layout.tsx diff --git a/web_ui/src/app/login/login.module.css b/web/src/app/login/login.module.css similarity index 100% rename from web_ui/src/app/login/login.module.css rename to web/src/app/login/login.module.css diff --git a/web_ui/src/app/login/page.tsx b/web/src/app/login/page.tsx similarity index 100% rename from web_ui/src/app/login/page.tsx rename to web/src/app/login/page.tsx diff --git a/web_ui/src/app/not-found.tsx b/web/src/app/not-found.tsx similarity index 100% rename from web_ui/src/app/not-found.tsx rename to web/src/app/not-found.tsx diff --git a/web_ui/src/app/page.tsx b/web/src/app/page.tsx similarity index 100% rename from web_ui/src/app/page.tsx rename to web/src/app/page.tsx diff --git a/web_ui/tsconfig.json b/web/tsconfig.json similarity index 100% rename from web_ui/tsconfig.json rename to web/tsconfig.json