-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
57 lines (49 loc) · 1.77 KB
/
.env.example
File metadata and controls
57 lines (49 loc) · 1.77 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
# Interview Prep AI - Environment Configuration
# Copy this file to .env and fill in your values
# ===========================================
# Application Settings
# ===========================================
APP_NAME=Interview Prep AI
DEBUG=false
API_V1_PREFIX=/api/v1
LOG_LEVEL=INFO
# ===========================================
# Database (PostgreSQL)
# ===========================================
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/interview_prep
DATABASE_POOL_SIZE=5
DATABASE_MAX_OVERFLOW=10
# ===========================================
# Anthropic/Claude LLM
# ===========================================
ANTHROPIC_API_KEY=sk-ant-your-api-key-here
CLAUDE_MODEL=claude-3-5-sonnet-20241022
CLAUDE_TEMPERATURE=0.7
CLAUDE_MAX_TOKENS=4096
# ===========================================
# Reddit API (Optional - falls back to mock data)
# Get credentials at: https://www.reddit.com/prefs/apps
# ===========================================
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
REDDIT_USER_AGENT=InterviewPrepAI/1.0
# ===========================================
# GitHub Token (Optional - for tech stack analysis)
# ===========================================
GITHUB_TOKEN=
# ===========================================
# Scraper Settings
# ===========================================
# Set to true to always use mock data (useful for development)
USE_MOCK_SCRAPERS=false
SCRAPER_TIMEOUT=30
SCRAPER_RATE_LIMIT=10
# ===========================================
# Cache Settings
# ===========================================
COMPANY_DATA_TTL_HOURS=24
# ===========================================
# Security
# ===========================================
SECRET_KEY=your-secret-key-here-change-in-production
CORS_ORIGINS=["http://localhost:3000", "http://localhost:8000"]