-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 883 Bytes
/
.env.example
File metadata and controls
32 lines (25 loc) · 883 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
# Database Configuration
DATABASE_URL=postgresql://postgres:password@localhost:5432/code_review_db
# Redis Configuration
REDIS_URL=redis://localhost:6379/0
REDIS_RESULTS_URL=redis://localhost:6379/1
# GitHub OAuth Configuration
GITHUB_CLIENT_ID=your_github_client_id_here
GITHUB_CLIENT_SECRET=your_github_client_secret_here
GITHUB_OAUTH_REDIRECT_URI=http://localhost:8000/auth/callback
ENCRYPTION_KEY=your-64-character-encryption-key-here
# GitHub Webhook (Optional)
GITHUB_WEBHOOK_SECRET=your_webhook_secret_here
# JWT Configuration
SECRET_KEY=your-super-secret-key-change-in-production-minimum-32-characters
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=43200
# Groq API Configuration
GROQ_API_KEY=your_groq_api_key_here
GROQ_MODEL=mixtral-8x7b-32768
# Rate Limiting
RATE_LIMIT_REQUESTS=100
RATE_LIMIT_WINDOW=3600
# Application Configuration
LOG_LEVEL=INFO
ENABLE_METRICS=true