-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (49 loc) · 2.06 KB
/
.env.example
File metadata and controls
56 lines (49 loc) · 2.06 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
# Universal CV Environment Configuration
# Copy this file to .env.local and fill in your values:
# cp .env.example .env.local
# ============================================================================
# AI PROVIDER API KEYS
# At least one is required for AI-powered variant generation (npm run generate:cv)
# ============================================================================
# Anthropic Claude (Recommended)
# Get your key at: https://console.anthropic.com
# Pricing: https://www.anthropic.com/pricing
ANTHROPIC_API_KEY=
# OpenAI (Alternative)
# Get your key at: https://platform.openai.com/api-keys
# Pricing: https://openai.com/pricing
OPENAI_API_KEY=
# Google Gemini (Alternative)
# Get your key at: https://makersuite.google.com/app/apikey
# Pricing: https://ai.google.dev/pricing (Free tier available!)
GEMINI_API_KEY=
# ============================================================================
# CV DASHBOARD (Optional)
# ============================================================================
# Password for the private CV Dashboard - share variant links with recruiters
#
# Usage:
# DASHBOARD_PASSWORD=your-password npm run generate:dashboard
#
# Access:
# Local: http://localhost:5173/cv-dashboard/
# Production: https://yoursite.com/cv-dashboard/
#
# The dashboard is password-protected and lets you:
# - View all variants in one place
# - Filter by application status
# - Download resumes
# - Share portfolio links
#
DASHBOARD_PASSWORD=
# ============================================================================
# NOTES
# ============================================================================
#
# - Only ONE API key is needed to use AI variant generation
# - Claude (Anthropic) is recommended for best results
# - Gemini has a free tier for getting started
# - If you don't have an API key, you can still:
# 1. Use manual variant creation (copy content/variants/_template.yaml)
# 2. Use the analysis tools (npm run analyze:jd, npm run search:evidence)
# 3. Use the quality pipeline (npm run eval:variant, npm run redteam:variant)