重构项目结构:迁移到单体架构并优化代码组织

- 删除分布式架构相关文件和配置
- 将backend-distributed重命名为backend保留分布式代码作为参考
- 优化backend-single单体架构实现
- 添加Coze API集成相关文档和测试
- 清理项目根目录的部署脚本和配置文件
- 更新WebSocket和消息服务实现
- 完善认证服务和密码加密功能
This commit is contained in:
2025-07-24 22:16:27 +08:00
parent 847f5126cf
commit ca42a7d9a4
308 changed files with 1263 additions and 13496 deletions
+11 -2
View File
@@ -1,3 +1,12 @@
{
"java.compile.nullAnalysis.mode": "automatic"
}
"java.compile.nullAnalysis.mode": "automatic",
"java.debug.settings.onBuildFailureProceed": true,
"terminal.integrated.profiles.windows": {
"PowerShell": {
"args": ["-NoExit", "-Command", "chcp.com 65001"]
},
"Command Prompt": {
"args": ["/K", "chcp 65001"]
}
}
}