-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (34 loc) · 1.61 KB
/
.env.example
File metadata and controls
44 lines (34 loc) · 1.61 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
# Beyond the Code Pipeline - Environment Variables
# Copy this file to .env and fill in your values
# Run: cp .env.example .env
# =============================================================================
# LLM API Keys (at least one required)
# =============================================================================
# Anthropic Claude API (recommended - best quality for draft writing)
# Get your key at: https://console.anthropic.com/
ANTHROPIC_API_KEY=
# OpenAI GPT API (fallback provider)
# Get your key at: https://platform.openai.com/api-keys
OPENAI_API_KEY=
# Google Gemini API (used for critiques - free tier available)
# Get your key at: https://aistudio.google.com/apikey
GOOGLE_API_KEY=
# Groq API (optional - fast Llama inference)
# Get your key at: https://console.groq.com/
GROQ_API_KEY=
# =============================================================================
# Reddit OAuth (required for Reddit scraper)
# =============================================================================
# Create a Reddit app at: https://www.reddit.com/prefs/apps
# 1. Click "create another app..."
# 2. Select "script" as the application type
# 3. Set redirect URI to: http://localhost:8080
# 4. Copy the client ID (shown under the app name)
# 5. Copy the client secret
REDDIT_CLIENT_ID=
REDDIT_CLIENT_SECRET=
# =============================================================================
# Optional: GitHub (only needed if creating PRs programmatically)
# =============================================================================
# GitHub Personal Access Token (usually not needed - gh CLI handles auth)
# GH_TOKEN=