-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.example
More file actions
34 lines (25 loc) · 1.58 KB
/
env.example
File metadata and controls
34 lines (25 loc) · 1.58 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
# Note: If you have these environment variables set in your own environment, the ones in your environment will take precedence over any you put here.
# GitHub Configuration
# Option 1: Single token (simplest)
GITHUB_TOKEN=your_github_token_here
# Option 2: Multiple tokens (for working across multiple projects with fine-grained PATs)
# Comma-separated list of tokens. When --post is used, each token is tested for write access
# and the first one that works is used. This is useful if you have separate fine-grained PATs
# for different repositories. Takes precedence over GITHUB_TOKEN for write operations.
# REVIEW_ROADMAP_GITHUB_TOKENS=ghp_token1,ghp_token2,ghp_token3
# Application Settings
REVIEW_ROADMAP_LOG_LEVEL=INFO
REVIEW_ROADMAP_LOG_FORMAT=console # Options: console (pretty), json (structured)
REVIEW_ROADMAP_LLM_PROVIDER=anthropic # Options: anthropic, anthropic-vertex, openai, google
REVIEW_ROADMAP_MODEL_NAME=claude-opus-4-5
# LLM Providers
# Use ANTHROPIC_API_KEY when REVIEW_ROADMAP_LLM_PROVIDER=anthropic
ANTHROPIC_API_KEY=your_anthropic_key_here
# Use OPENAI_API_KEY when REVIEW_ROADMAP_LLM_PROVIDER=openai
OPENAI_API_KEY=your_openai_key_here
# Use GOOGLE_API_KEY when REVIEW_ROADMAP_LLM_PROVIDER=google
GOOGLE_API_KEY=your_google_key_here
# Anthropic via Google Cloud Vertex AI (use when REVIEW_ROADMAP_LLM_PROVIDER=anthropic-vertex)
ANTHROPIC_VERTEX_PROJECT_ID=your_gcp_project_id
# ANTHROPIC_VERTEX_REGION=us-east5 # Optional: defaults to us-east5
# GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json # Optional: defaults to ~/.config/gcloud/application_default_credentials.json