feat: 完成配置中心重构和命名规范优化

- 重构config层为配置中心架构,支持动态配置管理
- 统一core层命名规范(event-bus→event, circuit-breaker→breaker, domain-sdk→sdk)
- 修复数据库连接配置路径问题
- 实现配置中心完整功能:系统配置、动态配置、配置验证、统计
- 优化目录结构,为微服务架构做准备
- 修复TypeScript编译错误和依赖注入问题
This commit is contained in:
万物街
2025-08-28 05:19:14 +08:00
parent 5118d98369
commit 2084711030
137 changed files with 6148 additions and 1856 deletions

View File

@@ -2,6 +2,7 @@
export * from './admin/admin.module';
export * from './member/member.module';
export * from './rbac/rbac.module';
export * from './user/user.module';
export * from './auth/auth.module';
export * from './upload/upload.module';
export * from './jobs/jobs.module';
@@ -16,5 +17,4 @@ export * from './auth/decorators/RolesDecorator';
// 导出设置相关模块
export * from './settings';
// 导出常量
export * from '../config/common/constants';