-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
37 lines (31 loc) · 874 Bytes
/
env.example
File metadata and controls
37 lines (31 loc) · 874 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
# Server Configuration
NODE_ENV=production
SERVER_PORT=3300
WEB_PORT=3300
NODE_1_PORT=3301
NODE_2_PORT=3302
NODE_1_ID=node-1
NODE_2_ID=node-2
# Base URL Configuration
BASE_URL=http://localhost
MCP_SERVER_URL=http://localhost:3300
# Redis Configuration
# For Docker deployment (default):
REDIS_URL=redis://redis:6379
# For local development:
# REDIS_URL=redis://localhost:6379
# OpenAI Configuration (supports OpenAI, OpenRouter, and other OpenAI-compatible providers)
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_BASE_URL=https://openrouter.ai/api/v1
OPENAI_MODEL=google/gemini-2.0-flash-exp:free
#OPENAI_MODEL=mistralai/mistral-7b-instruct:free
# Logging
LOG_LEVEL=DEBUG
# AI Analysis Configuration
AI_ANALYSIS_ENABLED=true
AI_ANALYSIS_CACHE_TTL=300
AI_ANALYSIS_BATCH_SIZE=10
# Performance Configuration
REDIS_POOL_SIZE=10
CACHE_TTL=600
MAX_CONCURRENT_REQUESTS=100