-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
20 lines (17 loc) · 952 Bytes
/
Copy path.env.example
File metadata and controls
20 lines (17 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# ============================================================
# starboard — Environment Variables Template
# Copy to .env and fill in your values: cp .env.example .env
# ============================================================
# GitHub Classic PAT — personal account
# Used by: fetch_stars.py (starred repos) + enrich_stars.py (GitHub REST API)
# Scopes required: read:user + public_repo (add 'repo' for private starred repos)
# Create at: https://github.com/settings/tokens → Classic token
GH_STARS_PAT=ghp_your_classic_pat_here
# GitHub Models API token — FREE tier
# Used by: enrich_stars.py (LLM enrichment via GitHub Models)
# Endpoint: https://models.github.ai/inference/chat/completions
# Fine-Grained PAT, permission: Models → Read
# Create at: https://github.com/settings/tokens → Fine-grained token
GH_MODELS_PAT=github_pat_your_models_token_here
# GitHub username (used for logging)
GITHUB_USERNAME=your_github_username