-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
executable file
·31 lines (24 loc) · 1.01 KB
/
.env.example
File metadata and controls
executable file
·31 lines (24 loc) · 1.01 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
# 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
# Optional: LLM Provider Configuration
# HELIX_OPENAI_API_KEY=your-openai-api-key
# HELIX_OLLAMA_HOST=http://ollama:11434
# HELIX_LLAMA_CPP_HOST=http://llamacpp:8080
# Optional: Worker Configuration
# WORKER_CAPABILITIES=code-generation,testing,llm-inference
# WORKER_MAX_TASKS=5