File size: 311 Bytes
c2c8c8d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Server
NODE_ENV=development
PORT=3001
CLIENT_URL=http://localhost:5173
# GLM API
GLM_API_KEY=your_glm_api_key_here
GLM_BASE_URL=https://open.bigmodel.cn/api/paas/v4
GLM_MODEL=glm-5
# GitHub Integration
GITHUB_TOKEN=your_github_token_here
# Redis
REDIS_URL=redis://localhost:6379
# Logging
LOG_LEVEL=debug
|