-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
53 lines (45 loc) · 1.43 KB
/
.env.example
File metadata and controls
53 lines (45 loc) · 1.43 KB
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
44
45
46
47
48
49
50
51
52
53
# Docker Compose Environment Variables
# Copy this file to .env and update with your values
# Database Configuration
DB_NAME=api_orchestrator
DB_USER=orchestrator
DB_PASSWORD=changeme_in_production
DB_PORT=5432
# Redis Configuration
REDIS_PASSWORD=changeme_in_production
REDIS_PORT=6379
# Application Configuration
APP_PORT=8000
SECRET_KEY=your-secret-key-change-in-production
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=30
REFRESH_TOKEN_EXPIRE_DAYS=7
# Ultra Premium AI Workforce - LLM Configuration
ANTHROPIC_API_KEY=your_anthropic_api_key_here
OPENAI_API_KEY=your_openai_api_key_here
LLM_PROVIDER=anthropic
LLM_RATE_LIMIT=60
LLM_MAX_DAILY_COST=100.0
LLM_TIMEOUT=30
LLM_MAX_RETRIES=3
ANTHROPIC_MODEL=claude-3-sonnet-20240229
OPENAI_MODEL=gpt-4-turbo-preview
# Stripe Configuration (Required for billing)
STRIPE_SECRET_KEY=sk_test_your_stripe_secret_key_here
STRIPE_PUBLISHABLE_KEY=pk_test_your_stripe_publishable_key_here
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
STRIPE_STARTER_PRICE_ID=price_starter_monthly_id
STRIPE_PRO_PRICE_ID=price_pro_monthly_id
STRIPE_ENTERPRISE_PRICE_ID=price_enterprise_monthly_id
STRIPE_ULTRA_PREMIUM_PRICE_ID=price_ultra_premium_monthly_id
# Email Configuration (Optional)
SMTP_HOST=
SMTP_PORT=587
SMTP_USER=
SMTP_PASS=
FROM_EMAIL=noreply@api-orchestrator.com
# CORS Settings
CORS_ORIGINS=["http://localhost:3000","http://localhost:5173","http://localhost"]
# Environment
ENVIRONMENT=development
LOG_LEVEL=INFO