3d47227fbd
Remove embedded frontend and workflow editor assets, add standalone API deployment configuration, and retain the current backend service updates.
69 lines
1.2 KiB
YAML
69 lines
1.2 KiB
YAML
language: zh-CN
|
|
|
|
server:
|
|
port: 8083
|
|
frontendUrl: http://127.0.0.1:3000
|
|
cors:
|
|
allowedOrigins:
|
|
- http://localhost:3000
|
|
- http://127.0.0.1:3000
|
|
|
|
db:
|
|
type: postgres
|
|
dsn: host=host.docker.internal user=cs_ai_agent password=cs_ai_agent_password dbname=cs_ai_agent port=5432 sslmode=disable TimeZone=Asia/Shanghai
|
|
|
|
logger:
|
|
level: info
|
|
format: text
|
|
addSource: false
|
|
|
|
auth:
|
|
tokenTTLHours: 24
|
|
maxFailedAttempts: 5
|
|
credentialLockMinute: 30
|
|
|
|
storage:
|
|
default: local
|
|
maxUploadSizeMB: 5
|
|
local:
|
|
root: /app/data/storage
|
|
baseUrl: http://127.0.0.1:8083/storage
|
|
oss:
|
|
endpoint: ""
|
|
bucket: ""
|
|
accessKeyId: ""
|
|
accessKeySecret: ""
|
|
baseUrl: ""
|
|
private: false
|
|
signedUrlExpireSeconds: 600
|
|
|
|
vectorDB:
|
|
type: lancedb
|
|
qdrant:
|
|
host: qdrant
|
|
grpcPort: 6334
|
|
apiKey: ""
|
|
useTls: false
|
|
lancedb:
|
|
path: /app/data/lancedb
|
|
|
|
mcp:
|
|
enabled: true
|
|
servers:
|
|
system:
|
|
enabled: true
|
|
endpoint: http://127.0.0.1:8083/api/mcp
|
|
timeoutMs: 60000
|
|
headers: {}
|
|
|
|
wxWork:
|
|
enabled: false
|
|
|
|
oidc:
|
|
enabled: false
|
|
|
|
customerSession:
|
|
secret: change-me
|
|
ttlMinutes: 120
|
|
refreshThresholdMinutes: 30
|