-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·56 lines (47 loc) · 1.88 KB
/
.env.example
File metadata and controls
executable file
·56 lines (47 loc) · 1.88 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
49
50
51
52
53
54
55
56
# HelixCode Docker Environment Configuration
# Copy this file to .env and modify as needed
# Database Configuration
HELIX_DATABASE_PASSWORD=helixpass
HELIX_AUTH_JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
HELIX_REDIS_PASSWORD=redispass
# Port Configuration
HELIX_API_PORT=8080
HELIX_SSH_PORT=2222
HELIX_WEB_PORT=3000
# Network Configuration
HELIX_NETWORK_MODE=standalone # standalone or distributed
HELIX_AUTO_PORT=false # Automatically adjust ports if occupied
# Optional: External Database (if not using included PostgreSQL)
# HELIX_DATABASE_URL=postgres://user:pass@host:port/database?sslmode=disable
# Optional: External Redis (if not using included Redis)
# HELIX_REDIS_URL=redis://user:pass@host:port/database
# ============================================================================
# LLMsVerifier Configuration
# ============================================================================
HELIX_VERIFIER_ENABLED=false
HELIX_VERIFIER_ENDPOINT=http://localhost:8081
HELIX_VERIFIER_API_KEY=
HELIX_VERIFIER_TIMEOUT=30s
HELIX_VERIFIER_CACHE_TTL=5m
HELIX_VERIFIER_POLLING_INTERVAL=60s
HELIX_VERIFIER_MIN_SCORE=6.0
HELIX_MODELS_DEV_ENDPOINT=https://api.models.dev
# ============================================================================
# Provider API Keys (Cloud Providers)
# ============================================================================
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
GEMINI_API_KEY=
DEEPSEEK_API_KEY=
GROQ_API_KEY=
MISTRAL_API_KEY=
XAI_API_KEY=
OPENROUTER_API_KEY=
# ============================================================================
# Local Provider Configuration
# ============================================================================
HELIX_OLLAMA_HOST=http://localhost:11434
HELIX_LLAMA_CPP_HOST=http://localhost:8080
# Optional: Worker Configuration
# WORKER_CAPABILITIES=code-generation,testing,llm-inference
# WORKER_MAX_TASKS=5