Iteration 1 六项任务全部完成: 1. 审计日志IP记录 — task_local RequestInfo 自动注入 IP/user_agent 2. 文件上传服务 — multipart 上传 + ServeDir 静态文件服务 3. 医护端后端API — 医生工作台仪表盘 + 患者标签CRUD + 会话已读 4. 小程序角色切换 — 登录后根据角色跳转医护台/患者首页 5. 小程序安全加固 — secure-storage 开发模式警告 6. 讨论记录归档 — docs/discussions/
52 lines
981 B
TOML
52 lines
981 B
TOML
[server]
|
|
host = "0.0.0.0"
|
|
port = 3000
|
|
|
|
[database]
|
|
url = "__MUST_SET_VIA_ENV__"
|
|
max_connections = 20
|
|
min_connections = 5
|
|
|
|
[redis]
|
|
url = "__MUST_SET_VIA_ENV__"
|
|
|
|
[jwt]
|
|
secret = "__MUST_SET_VIA_ENV__"
|
|
access_token_ttl = "15m"
|
|
refresh_token_ttl = "7d"
|
|
|
|
[auth]
|
|
super_admin_password = "__MUST_SET_VIA_ENV__"
|
|
|
|
[log]
|
|
level = "info"
|
|
|
|
[cors]
|
|
# Comma-separated allowed origins. Use "*" for development only.
|
|
allowed_origins = "http://localhost:5173,http://localhost:5174,http://localhost:5175,http://localhost:5176,http://localhost:3000"
|
|
|
|
[wechat]
|
|
appid = "__MUST_SET_VIA_ENV__"
|
|
secret = "__MUST_SET_VIA_ENV__"
|
|
|
|
[health]
|
|
aes_key = "__MUST_SET_VIA_ENV__"
|
|
hmac_key = "__MUST_SET_VIA_ENV__"
|
|
|
|
[crypto]
|
|
kek = "__MUST_SET_VIA_ENV__"
|
|
|
|
[ai]
|
|
default_provider = "claude"
|
|
api_key = ""
|
|
base_url = "https://api.anthropic.com"
|
|
model = "claude-sonnet-4-6"
|
|
max_tokens = 2048
|
|
temperature = 0.3
|
|
cache_ttl_seconds = 604800
|
|
rate_limit_patient_daily = 10
|
|
|
|
[storage]
|
|
upload_dir = "./uploads"
|
|
max_file_size = "10MB"
|