feat: Implement initial Codex Pool backend server with comprehensive APIs for configuration, S2A integration, owner management, batch processing, monitoring, and corresponding frontend pages.

This commit is contained in:
2026-02-01 03:45:53 +08:00
parent 8560a33f36
commit e27e36b0e0
8 changed files with 297 additions and 31 deletions

View File

@@ -175,6 +175,10 @@ export interface AppConfig {
email: {
services: MailServiceConfig[] // 多个邮箱服务配置
}
proxy: {
default: string // 全局默认代理地址
enabled: boolean // 是否启用代理
}
}
// 默认配置
@@ -203,6 +207,10 @@ export const defaultConfig: AppConfig = {
},
],
},
proxy: {
default: '',
enabled: false,
},
}
// 检查结果