-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (33 loc) · 866 Bytes
/
.env.example
File metadata and controls
43 lines (33 loc) · 866 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Server Configuration
NODE_ENV=development
PORT=3001
HOST=0.0.0.0
CORS_ORIGINS=http://localhost:3000
# Authentication
JWT_SECRET=your-secret-key-here
JWT_EXPIRY=1d
# Supabase Configuration
SUPABASE_URL=https://your-supabase-project.supabase.co
SUPABASE_SERVICE_KEY=your-service-key
SUPABASE_ANON_KEY=your-anon-key
# Redis Configuration (for BullMQ)
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=
# Service Execution Settings
EXECUTION_CONCURRENCY=5
EXECUTION_TIMEOUT=300000 # 5 minutes in milliseconds
# Service Connector API Keys
# OpenAI
OPENAI_API_KEY=your-openai-api-key
# Anthropic
ANTHROPIC_API_KEY=your-anthropic-api-key
# Stability AI
STABILITY_API_KEY=your-stability-api-key
# ElevenLabs
ELEVENLABS_API_KEY=your-elevenlabs-api-key
# Optional: Logging
LOG_LEVEL=info
# Optional: Analytics
ANALYTICS_ENABLED=true
ANALYTICS_RETENTION_DAYS=90