-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy path.env.example
More file actions
48 lines (42 loc) · 2.15 KB
/
Copy path.env.example
File metadata and controls
48 lines (42 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Neon Postgres (Vercel-recommended database)
# Get your connection string from https://neon.tech or Vercel dashboard
DATABASE_URL=postgresql://user:password@host/database?sslmode=require
# GitHub Integration — Event-Driven Trigger System (Issue #43)
# Required: GitHub personal access token (needs repo webhook admin scope)
# GITHUB_TOKEN=github_pat_...
# Optional: Shared HMAC secret for verifying incoming webhook payloads
# GITHUB_WEBHOOK_SECRET=your-webhook-secret-here
# GitHub Polling Adapter (Issue #45) — Alternative to webhooks for local development
# Optional: Enable polling on startup (default: false)
# GITHUB_POLLING_ENABLED=false
# Optional: Polling interval in seconds (default: 30, minimum: 10)
# GITHUB_POLLING_INTERVAL=30
# Claude Code SDK Configuration (for Vercel/serverless environments)
# Required: API authentication token
ANTHROPIC_AUTH_TOKEN=your-token-here
# Optional: Custom API endpoint (e.g., BigModel's Anthropic-compatible API)
# ANTHROPIC_BASE_URL=https://open.bigmodel.cn/api/anthropic
# Optional: Request timeout in milliseconds (default: 600000)
# API_TIMEOUT_MS=3000000
# Optional: Disable non-essential traffic for Claude Code
# CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1
# Model configuration (optional, defaults to Claude models)
# ANTHROPIC_MODEL=GLM-4.7
# ANTHROPIC_SMALL_FAST_MODEL=GLM-4.7
# ANTHROPIC_DEFAULT_SONNET_MODEL=GLM-4.7
# ANTHROPIC_DEFAULT_OPUS_MODEL=GLM-4.7
# ANTHROPIC_DEFAULT_HAIKU_MODEL=GLM-4.7
# MiniMax Configuration (Anthropic-compatible API)
# Required when using the minimax workspace agent provider
# MINIMAX_API_KEY=your-minimax-api-key
# Optional: Custom base URL (default: https://api.minimax.io/anthropic — overseas)
# For mainland China use https://api.minimaxi.com/anthropic
# MINIMAX_BASE_URL=https://api.minimax.io/anthropic
# To select MiniMax as the workspace agent backend:
# WORKSPACE_AGENT_PROVIDER=minimax
# WORKSPACE_AGENT_MODEL=MiniMax-M2.7
# Development Configuration
# Optional: Additional allowed dev origins for Next.js (comma-separated)
# Useful when accessing the dev server from other devices on your network
# Example: ROUTA_ALLOWED_DEV_ORIGINS=192.168.1.210,10.0.0.5
# ROUTA_ALLOWED_DEV_ORIGINS=