diff --git a/web-flowith/.dockerignore b/web/.dockerignore similarity index 100% rename from web-flowith/.dockerignore rename to web/.dockerignore diff --git a/web-flowith/.env.development b/web/.env.development similarity index 100% rename from web-flowith/.env.development rename to web/.env.development diff --git a/web-flowith/.env.production b/web/.env.production similarity index 100% rename from web-flowith/.env.production rename to web/.env.production diff --git a/web-flowith/.eslintrc.cjs b/web/.eslintrc.cjs similarity index 100% rename from web-flowith/.eslintrc.cjs rename to web/.eslintrc.cjs diff --git a/web-flowith/.gitignore b/web/.gitignore similarity index 100% rename from web-flowith/.gitignore rename to web/.gitignore diff --git a/web-flowith/.prettierrc b/web/.prettierrc similarity index 100% rename from web-flowith/.prettierrc rename to web/.prettierrc diff --git a/web-flowith/Dockerfile b/web/Dockerfile similarity index 100% rename from web-flowith/Dockerfile rename to web/Dockerfile diff --git a/web-flowith/README.md b/web/README.md similarity index 100% rename from web-flowith/README.md rename to web/README.md diff --git a/web-flowith/WebSocket聊天功能完善总结.md b/web/WebSocket聊天功能完善总结.md similarity index 100% rename from web-flowith/WebSocket聊天功能完善总结.md rename to web/WebSocket聊天功能完善总结.md diff --git a/web-flowith/WebSocket集成总结.md b/web/WebSocket集成总结.md similarity index 100% rename from web-flowith/WebSocket集成总结.md rename to web/WebSocket集成总结.md diff --git a/web-flowith/debug.html b/web/debug.html similarity index 100% rename from web-flowith/debug.html rename to web/debug.html diff --git a/web-flowith/deploy.sh b/web/deploy.sh old mode 100755 new mode 100644 similarity index 100% rename from web-flowith/deploy.sh rename to web/deploy.sh diff --git a/web-flowith/docker-compose.yml b/web/docker-compose.yml similarity index 100% rename from web-flowith/docker-compose.yml rename to web/docker-compose.yml diff --git a/web-flowith/index.html b/web/index.html similarity index 100% rename from web-flowith/index.html rename to web/index.html diff --git a/web-flowith/package-lock.json b/web/package-lock.json similarity index 100% rename from web-flowith/package-lock.json rename to web/package-lock.json diff --git a/web-flowith/package.json b/web/package.json similarity index 100% rename from web-flowith/package.json rename to web/package.json diff --git a/web-flowith/src/App.vue b/web/src/App.vue similarity index 100% rename from web-flowith/src/App.vue rename to web/src/App.vue diff --git a/web-flowith/src/assets/styles/global.scss b/web/src/assets/styles/global.scss similarity index 100% rename from web-flowith/src/assets/styles/global.scss rename to web/src/assets/styles/global.scss diff --git a/web-flowith/src/assets/styles/globalThis.scss b/web/src/assets/styles/globalThis.scss similarity index 100% rename from web-flowith/src/assets/styles/globalThis.scss rename to web/src/assets/styles/globalThis.scss diff --git a/web-flowith/src/assets/styles/variables.scss b/web/src/assets/styles/variables.scss similarity index 100% rename from web-flowith/src/assets/styles/variables.scss rename to web/src/assets/styles/variables.scss diff --git a/web-flowith/src/components/layout/AppFooter.vue b/web/src/components/layout/AppFooter.vue similarity index 100% rename from web-flowith/src/components/layout/AppFooter.vue rename to web/src/components/layout/AppFooter.vue diff --git a/web-flowith/src/components/layout/AppHeader.vue b/web/src/components/layout/AppHeader.vue similarity index 100% rename from web-flowith/src/components/layout/AppHeader.vue rename to web/src/components/layout/AppHeader.vue diff --git a/web-flowith/src/main.ts b/web/src/main.ts similarity index 100% rename from web-flowith/src/main.ts rename to web/src/main.ts diff --git a/web-flowith/src/router/index.ts b/web/src/router/index.ts similarity index 100% rename from web-flowith/src/router/index.ts rename to web/src/router/index.ts diff --git a/web-flowith/src/services/api.ts b/web/src/services/api.ts similarity index 100% rename from web-flowith/src/services/api.ts rename to web/src/services/api.ts diff --git a/web-flowith/src/services/auth.ts b/web/src/services/auth.ts similarity index 100% rename from web-flowith/src/services/auth.ts rename to web/src/services/auth.ts diff --git a/web-flowith/src/services/chat.ts b/web/src/services/chat.ts similarity index 100% rename from web-flowith/src/services/chat.ts rename to web/src/services/chat.ts diff --git a/web-flowith/src/services/websocket.ts b/web/src/services/websocket.ts similarity index 100% rename from web-flowith/src/services/websocket.ts rename to web/src/services/websocket.ts diff --git a/web-flowith/src/stores/app.ts b/web/src/stores/app.ts similarity index 100% rename from web-flowith/src/stores/app.ts rename to web/src/stores/app.ts diff --git a/web-flowith/src/stores/chat.ts b/web/src/stores/chat.ts similarity index 100% rename from web-flowith/src/stores/chat.ts rename to web/src/stores/chat.ts diff --git a/web-flowith/src/stores/diary.ts b/web/src/stores/diary.ts similarity index 100% rename from web-flowith/src/stores/diary.ts rename to web/src/stores/diary.ts diff --git a/web-flowith/src/stores/index.ts b/web/src/stores/index.ts similarity index 100% rename from web-flowith/src/stores/index.ts rename to web/src/stores/index.ts diff --git a/web-flowith/src/stores/user.ts b/web/src/stores/user.ts similarity index 100% rename from web-flowith/src/stores/user.ts rename to web/src/stores/user.ts diff --git a/web-flowith/src/types/auth.ts b/web/src/types/auth.ts similarity index 100% rename from web-flowith/src/types/auth.ts rename to web/src/types/auth.ts diff --git a/web-flowith/src/types/index.ts b/web/src/types/index.ts similarity index 100% rename from web-flowith/src/types/index.ts rename to web/src/types/index.ts diff --git a/web-flowith/src/utils/index.ts b/web/src/utils/index.ts similarity index 100% rename from web-flowith/src/utils/index.ts rename to web/src/utils/index.ts diff --git a/web-flowith/src/utils/request.ts b/web/src/utils/request.ts similarity index 100% rename from web-flowith/src/utils/request.ts rename to web/src/utils/request.ts diff --git a/web-flowith/src/utils/websocket-test.ts b/web/src/utils/websocket-test.ts similarity index 100% rename from web-flowith/src/utils/websocket-test.ts rename to web/src/utils/websocket-test.ts diff --git a/web-flowith/src/views/Chat/History.vue b/web/src/views/Chat/History.vue similarity index 100% rename from web-flowith/src/views/Chat/History.vue rename to web/src/views/Chat/History.vue diff --git a/web-flowith/src/views/Chat/index.vue b/web/src/views/Chat/index.vue similarity index 100% rename from web-flowith/src/views/Chat/index.vue rename to web/src/views/Chat/index.vue diff --git a/web-flowith/src/views/Dashboard/index.vue b/web/src/views/Dashboard/index.vue similarity index 100% rename from web-flowith/src/views/Dashboard/index.vue rename to web/src/views/Dashboard/index.vue diff --git a/web-flowith/src/views/Diary/index.vue b/web/src/views/Diary/index.vue similarity index 100% rename from web-flowith/src/views/Diary/index.vue rename to web/src/views/Diary/index.vue diff --git a/web-flowith/src/views/Home/index.vue b/web/src/views/Home/index.vue similarity index 100% rename from web-flowith/src/views/Home/index.vue rename to web/src/views/Home/index.vue diff --git a/web-flowith/src/views/LifeTrajectory/index.vue b/web/src/views/LifeTrajectory/index.vue similarity index 100% rename from web-flowith/src/views/LifeTrajectory/index.vue rename to web/src/views/LifeTrajectory/index.vue diff --git a/web-flowith/src/views/Login/index.vue b/web/src/views/Login/index.vue similarity index 100% rename from web-flowith/src/views/Login/index.vue rename to web/src/views/Login/index.vue diff --git a/web-flowith/src/views/Messages/index.vue b/web/src/views/Messages/index.vue similarity index 100% rename from web-flowith/src/views/Messages/index.vue rename to web/src/views/Messages/index.vue diff --git a/web-flowith/src/views/NotFound.vue b/web/src/views/NotFound.vue similarity index 100% rename from web-flowith/src/views/NotFound.vue rename to web/src/views/NotFound.vue diff --git a/web-flowith/src/views/Profile/index.vue b/web/src/views/Profile/index.vue similarity index 100% rename from web-flowith/src/views/Profile/index.vue rename to web/src/views/Profile/index.vue diff --git a/web-flowith/src/views/Register/index.vue b/web/src/views/Register/index.vue similarity index 100% rename from web-flowith/src/views/Register/index.vue rename to web/src/views/Register/index.vue diff --git a/web-flowith/src/views/Settings/index.vue b/web/src/views/Settings/index.vue similarity index 100% rename from web-flowith/src/views/Settings/index.vue rename to web/src/views/Settings/index.vue diff --git a/web-flowith/src/views/TokenTest.vue b/web/src/views/TokenTest.vue similarity index 100% rename from web-flowith/src/views/TokenTest.vue rename to web/src/views/TokenTest.vue diff --git a/web-flowith/src/views/TopicTracker/index.vue b/web/src/views/TopicTracker/index.vue similarity index 100% rename from web-flowith/src/views/TopicTracker/index.vue rename to web/src/views/TopicTracker/index.vue diff --git a/web-flowith/src/views/WebSocketTest.vue b/web/src/views/WebSocketTest.vue similarity index 100% rename from web-flowith/src/views/WebSocketTest.vue rename to web/src/views/WebSocketTest.vue diff --git a/web-flowith/tsconfig.json b/web/tsconfig.json similarity index 100% rename from web-flowith/tsconfig.json rename to web/tsconfig.json diff --git a/web-flowith/tsconfig.node.json b/web/tsconfig.node.json similarity index 100% rename from web-flowith/tsconfig.node.json rename to web/tsconfig.node.json diff --git a/web-flowith/vite.config.ts b/web/vite.config.ts similarity index 100% rename from web-flowith/vite.config.ts rename to web/vite.config.ts diff --git a/web-flowith/重构计划.md b/web/重构计划.md similarity index 100% rename from web-flowith/重构计划.md rename to web/重构计划.md