-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 904 Bytes
/
.env.example
File metadata and controls
37 lines (29 loc) · 904 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
# Coderide Potpie Service Environment Configuration
# Copy this file to .env and fill in your actual values
# Server Configuration
PORT=8080
# Potpie API Configuration
POTPIE_API_KEY=your_potpie_api_key_here
# Redis Configuration for BullMQ
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_PASSWORD=your_redis_password
REDIS_DB=1
REDIS_USERNAME=default
# Redis TLS Configuration (optional)
REDIS_TLS_ENABLED=false
REDIS_TLS_CERT_PATH=./certs/redis-client.crt
REDIS_TLS_REJECT_UNAUTHORIZED=true
# BullMQ Configuration
MAX_CONCURRENT_JOBS=5
MAX_RETRIES=3
QUEUE_NAME=potpie-analysis
# Optional: Logging Level
LOG_LEVEL=info
# Optional: Request Timeout (in milliseconds)
REQUEST_TIMEOUT=30000
# Langfuse Tracing (optional but recommended)
LANGFUSE_PUBLIC_KEY=your_langfuse_public_key
LANGFUSE_SECRET_KEY=your_langfuse_secret_key
LANGFUSE_BASEURL=https://cloud.langfuse.com
LANGFUSE_ENVIRONMENT=development