forked from lentrekin1/devmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 812 Bytes
/
.env.example
File metadata and controls
33 lines (26 loc) · 812 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
# DevMind Configuration
# Copy this file to .env and update with your values
# OpenAI Configuration
OPENAI_API_KEY=your_openai_api_key_here
OPENAI_MODEL=gpt-4-turbo-preview
OPENAI_TEMPERATURE=0.3
# Database Configuration
DATABASE_URL=postgresql://username:password@localhost:5432/devmind
# Agent Configuration
MAX_CONCURRENT_AGENTS=5
AGENT_TIMEOUT=300000
AGENT_RETRY_ATTEMPTS=3
# Monitoring Configuration
MONITORING_ENABLED=true
MONITORING_ENDPOINT=http://localhost:8080/metrics
# Security Configuration
JWT_SECRET=your_jwt_secret_here
ENCRYPTION_KEY=your_32_char_encryption_key_here
# Infrastructure Configuration
KUBERNETES_CONFIG_PATH=/path/to/kubeconfig
REDIS_URL=redis://localhost:6379
ELASTICSEARCH_URL=http://localhost:9200
# Development Configuration
NODE_ENV=development
LOG_LEVEL=debug
PORT=3000