f92ee66298
- Gitea client: 新增 hooks 读取并只保留安全诊断字段 - Projects: 在 Gitea 诊断中补充 webhook/relay 匹配状态 - Settings: 增加 GITEA_WEBHOOK_RELAY_BASE_URL 配置说明
45 lines
1.7 KiB
Bash
45 lines
1.7 KiB
Bash
# Runtime
|
|
NODE_ENV=development
|
|
PORT=4300
|
|
CORS_ORIGIN=http://localhost:4301
|
|
LOG_LEVEL=info
|
|
|
|
# Database
|
|
# Do not commit real credentials. Use a local-only .env file or deployment secret manager.
|
|
DATABASE_URL=mysql://devops_user:devops_password@127.0.0.1:3306/devops_platform
|
|
USE_DATABASE_READS=false
|
|
PRISMA_CONNECT_ON_BOOT=false
|
|
|
|
# Redis and queues, reserved for async polling/notification workers.
|
|
REDIS_URL=redis://127.0.0.1:6379/0
|
|
|
|
# Jenkins integration, server-side only.
|
|
JENKINS_BASE_URL=https://jenkins.example.internal
|
|
JENKINS_USERNAME=devops-bot
|
|
JENKINS_API_TOKEN=replace-with-secret-manager-value
|
|
JENKINS_AUTO_SYNC_ENABLED=false
|
|
JENKINS_AUTO_SYNC_INTERVAL_MS=30000
|
|
|
|
# Gitea integration, server-side only.
|
|
GITEA_BASE_URL=https://gitea.example.internal
|
|
GITEA_TOKEN=replace-with-secret-manager-value
|
|
GITEA_WEBHOOK_SECRET=replace-with-secret-manager-value
|
|
GITEA_WEBHOOK_RELAY_BASE_URL=https://jenkins.example.internal/gitea-jenkins-notify
|
|
|
|
# Public platform URL used in notification links.
|
|
DEVOPS_PUBLIC_URL=https://devops.mrzhan.top
|
|
|
|
# Notification provider, server-side only. Supported plan: wecom, feishu, generic.
|
|
NOTIFICATION_PROVIDER=replace-with-provider
|
|
NOTIFICATION_WEBHOOK_URL=https://notification.example.internal/webhook/replace-with-secret-manager-value
|
|
FEISHU_WEBHOOK_URL=https://open.feishu.cn/open-apis/bot/v2/hook/replace-with-secret-manager-value
|
|
WECOM_WEBHOOK_URL=https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=replace-with-secret-manager-value
|
|
|
|
# LLM proxy configuration, server-side only.
|
|
LLM_BASE_URL=https://llm.example.internal/v1
|
|
LLM_API_KEY=replace-with-secret-manager-value
|
|
LLM_MODEL=replace-with-model-name
|
|
|
|
# Secret encryption key placeholder. Production should provide this via secret manager.
|
|
SECRET_ENCRYPTION_KEY=replace-with-32-byte-key
|