forked from coleam00/context-engineering-intro
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 829 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 829 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
# Database Configuration
MONGODB_URI=mongodb://admin:password123@localhost:27017/ai_crm?authSource=admin
# JWT Configuration
JWT_SECRET=your-super-secret-jwt-key-change-in-production
JWT_REFRESH_SECRET=your-super-secret-refresh-key-change-in-production
# OpenRouter AI Configuration
OPENROUTER_API_KEY=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
# Application Configuration
SITE_URL=http://localhost:8080
SITE_NAME=AI-Powered CRM System
PORT=3000
NODE_ENV=development
# Frontend Configuration
FRONTEND_URL=http://localhost:8080
# API Rate Limiting
API_RATE_LIMIT_WINDOW_MS=900000
API_RATE_LIMIT_MAX_REQUESTS=100
# AI Configuration
AI_REQUEST_TIMEOUT_MS=30000
AI_MAX_RETRIES=3
AI_FALLBACK_MODEL=openai/gpt-4o-mini
# Security Configuration
BCRYPT_SALT_ROUNDS=12
SESSION_COOKIE_MAX_AGE=604800000