-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
54 lines (44 loc) · 2.25 KB
/
.env.example
File metadata and controls
54 lines (44 loc) · 2.25 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
# PostHog Analytics Configuration
# Get your API key from: https://app.posthog.com/project/settings
NEXT_PUBLIC_POSTHOG_KEY=your_posthog_api_key_here
NEXT_PUBLIC_POSTHOG_HOST=/ingest
# OpenAI API Configuration
# Required for audio transcription (pnpm transcribe-audio)
# Get your API key from: https://platform.openai.com/api-keys
OPENAI_API_KEY=your_openai_api_key_here
# ElevenLabs API Configuration
# Required for audio generation (pnpm generate-audio)
# Get your API key from: https://elevenlabs.io/app/settings/api-keys
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
# GitHub API Configuration
# Required for /status page - GitHub activity card
# Supports multiple accounts with different permissions
# Get your tokens from: https://github.com/settings/tokens
# Scopes needed: read:user, repo (for private repos), read:org
#
# Configure as many accounts as you need - all data will be aggregated:
# - PRIVATE: Fetches all data types (commits, PRs, issues, reviews)
# - OAIZ: Fetches everything except commits (PRs, issues, reviews only)
# - YC: Fetches all data types (commits, PRs, issues, reviews)
PRIVATE_GITHUB_TOKEN=your_private_github_token_here
PRIVATE_GITHUB_USERNAME=your_private_github_username_here
OAIZ_GITHUB_TOKEN=your_oaiz_github_token_here
OAIZ_GITHUB_USERNAME=your_oaiz_github_username_here
YC_GITHUB_TOKEN=your_yc_github_token_here
YC_GITHUB_USERNAME=your_yc_github_username_here
LINEAR_API_KEY=xxx
# Spotify API Configuration
# Required for /status page - Now Playing card
#
# ONE-TIME SETUP: You need all 3 values below (refresh token approach, not full OAuth)
# 1. Create app at: https://developer.spotify.com/dashboard
# 2. In app settings, add redirect URI: https://addcommitpush.io/callback/spotify
# 3. Get CLIENT_ID and CLIENT_SECRET from app settings
# 4. Run: pnpm tsx scripts/get-spotify-refresh-token.ts <CLIENT_ID> <CLIENT_SECRET>
# 5. Follow the script prompts to get your REFRESH_TOKEN
#
# Once configured, the refresh token never expires - it's essentially a permanent API token
# All three values are needed: client_id + client_secret authenticate the token exchange
SPOTIFY_CLIENT_ID=your_spotify_client_id_here
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret_here
SPOTIFY_REFRESH_TOKEN=your_spotify_refresh_token_here # Get this once, use forever