-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.template
More file actions
60 lines (46 loc) · 1.47 KB
/
env.template
File metadata and controls
60 lines (46 loc) · 1.47 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
54
55
56
57
58
59
# Environment Variables Template
# ====================
# Database Configuration
# ====================
DATABASE_URL="postgresql://user:password@localhost:5432/tutor_quality"
# ====================
# AI Configuration
# ====================
# Choose ONE of the following:
# Option 1: OpenAI (Recommended for GPT-4)
OPENAI_API_KEY=sk-proj-xxxxx
# Option 2: OpenRouter (Flexible, access to multiple models)
# OPENROUTER_API_KEY=sk-or-v1-xxxxx
# Option 3: Direct Anthropic API
# ANTHROPIC_API_KEY=sk-ant-xxxxx
# Required for OpenRouter (helps with usage tracking)
NEXT_PUBLIC_APP_URL=http://localhost:3000
# ====================
# Email Configuration
# ====================
# Choose ONE of the following:
# Option 1: Resend (Recommended)
RESEND_API_KEY=re_xxxxx
# Option 2: SendGrid
# SENDGRID_API_KEY=SG.xxxxx
# Email sender details
EMAIL_FROM=noreply@example.com
EMAIL_FROM_NAME="Tutor Quality Platform"
# ====================
# Experimentation (GrowthBook)
# ====================
GROWTHBOOK_API_KEY=sdk-xxxxx
GROWTHBOOK_CLIENT_KEY=sdk-xxxxx
NEXT_PUBLIC_GROWTHBOOK_API_HOST=https://cdn.growthbook.io
# ====================
# Optional: Monitoring
# ====================
# SENTRY_DSN=https://xxxxx@sentry.io/xxxxx
# NEXT_PUBLIC_SENTRY_DSN=https://xxxxx@sentry.io/xxxxx
# ====================
# Setup Instructions
# ====================
# 1. Copy this file: cp env.template .env
# 2. Fill in your actual values
# 3. Never commit .env to git
# 4. See docs/openrouter-setup.md for AI setup details