Files
cjyyzx/.env.example.gateway
xiaohei 428644e286
Revalidate Docs / Revalidate Docs (push) Failing after 2s
E2E CI / Check Duplicate Run (push) Failing after 5s
Test CI / Check Duplicate Run (push) Failing after 6s
E2E CI / Test Web App (push) Has been skipped
Test CI / Test Packages (push) Has been skipped
Test CI / Test App (shard 1/3) (push) Has been skipped
Test CI / Test App (shard 2/3) (push) Has been skipped
Test CI / Test App (shard 3/3) (push) Has been skipped
Test CI / Test Desktop App (push) Has been skipped
🔄 Branch Synchronization / sync-branches (push) Failing after 11s
Test CI / Test Database (push) Has been skipped
Test CI / Merge and Upload App Coverage (push) Has been skipped
Database Schema Visualization CI / build (push) Failing after 4m14s
Enterprise AI Workspace prototype: LobeChat (de-branded) + Enterprise Gateway + Postgres/Redis stack
2026-04-21 12:58:00 +08:00

42 lines
1.2 KiB
Bash

# Postgres
POSTGRES_USER=eg
POSTGRES_PASSWORD=eg_pw
POSTGRES_DB=enterprise_gateway
POSTGRES_PORT=5432
# API
API_PORT=3001
DATABASE_URL=postgresql://eg:eg_pw@db:5432/enterprise_gateway?schema=public
MOCK_MODE=true
AUTH_MODE=dev
NODE_ENV=development
LOG_LEVEL=info
# External services (placeholders — only used when MOCK_MODE=false)
GONGDAN_API_URL=https://gongdan.example.com
GONGDAN_API_KEY=replace_me
SUPER_OPS_API_URL=https://ops.example.com
SUPER_OPS_API_KEY=replace_me
CLOUDCOST_API_URL=https://cloudcost.example.com
CLOUDCOST_BEARER=replace_me
KB_AGENT_URL=https://kb.example.com
KB_API_KEY=replace_me
AI_SEARCH_URL=https://google.serper.dev
AI_SEARCH_KEY=replace_me
SANDBOX_URL=https://daytona.example.com
SANDBOX_KEY=replace_me
DOC_AGENT_URL=https://doc.example.com
DOC_AGENT_KEY=replace_me
CASDOOR_URL=http://casdoor.ashyglacier-8207efd2.eastasia.azurecontainerapps.io
CASDOOR_CLIENT_ID=replace_me
CASDOOR_CLIENT_SECRET=replace_me
# CORS allowlist for API (comma-separated). Must include frontend origin.
CORS_ORIGINS=http://localhost:3010
# Web (host port — container still listens on 3000; host 3000 often occupied by newapi)
WEB_PORT=3010
API_INTERNAL_URL=http://api:3001
NEXT_PUBLIC_API_URL=http://localhost:3001