-
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.15 KB
/
.env.example
File metadata and controls
34 lines (27 loc) · 1.15 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
# Voice Vibe Coding Environment Variables
# Copy this file to .env and fill in your actual values
# Anthropic API Key (required)
ANTHROPIC_API_KEY=your_anthropic_api_key_here
# Model selection (optional, defaults to sonnet)
# Options: opus, sonnet, haiku
ANTHROPIC_MODEL=opus
# ElevenLabs API Key (for voice agent)
ELEVENLABS_API_KEY=your_elevenlabs_api_key_here
# Twilio Credentials (for SMS notifications)
TWILIO_ACCOUNT_SID=your_twilio_account_sid_here
TWILIO_AUTH_TOKEN=your_twilio_auth_token_here
TWILIO_PHONE_NUMBER=+1234567890
# Vercel Configuration (for deployment)
# Create token at: https://vercel.com/account/tokens
# Required for automatic deployment to production
VERCEL_TOKEN=your_vercel_token_here
# Optional: Team ID if using Vercel Teams (leave empty for personal account)
VERCEL_TEAM_ID=
# GitHub Configuration (for repository management)
# Create a personal access token at: https://github.com/settings/tokens
# Required scopes: repo (full control of private repositories)
GITHUB_TOKEN=ghp_your_github_personal_access_token_here
GITHUB_USERNAME=your_github_username_here
# Webhook Server Configuration (optional)
WEBHOOK_HOST=0.0.0.0
WEBHOOK_PORT=5001