-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (27 loc) · 1.43 KB
/
Copy path.env.example
File metadata and controls
34 lines (27 loc) · 1.43 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
# Beyond the Code Pipeline - Environment Variables
# Copy this file to .env and fill in your values
# Run: cp .env.example .env
# =============================================================================
# LLM CLIs (no API keys needed)
# =============================================================================
# Content generation and critique run through the local `claude` and `codex`
# CLIs, authenticated via subscription/login on this machine:
# - claude: run `claude` once to log in (personal Claude Code subscription)
# - codex: run `codex login` once (or check with `codex login status`)
# Nothing to set here.
# =============================================================================
# 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=