-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 752 Bytes
/
.env.example
File metadata and controls
28 lines (22 loc) · 752 Bytes
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
# Root environment configuration example
# Copy this file to .env and fill in your values
# Server environment variables
DATABASE_URL=postgresql://postgres:your_password@localhost:5432/claudebench
CORS_ORIGIN=http://localhost:3001
BETTER_AUTH_SECRET=your_secret_key_here_min_32_chars
BETTER_AUTH_URL=http://localhost:3000
# Redis Configuration
REDIS_HOST=localhost
REDIS_PORT=6379
# Optional: Add if using Redis password
# REDIS_PASSWORD=your_redis_password
# Server Configuration
PORT=3000
NODE_ENV=development
# Instance Configuration
INSTANCE_ID=worker-1
INSTANCE_ROLE=worker
# Inference Server Configuration (if using LLM features)
# INFERENCE_SERVER_URL=http://localhost:8080
# Web environment variables
VITE_SERVER_URL=http://localhost:3000