-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy path.env.example
More file actions
67 lines (55 loc) · 2.18 KB
/
Copy path.env.example
File metadata and controls
67 lines (55 loc) · 2.18 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# =========================================
# Calendly-Elevenlabs Integration
# .env.example file
# =========================================
# Copy this file to .env and fill in your own values
# DO NOT commit your actual .env file to version control!
# =========================================
# Required API Keys
# =========================================
# Calendly API - Get from https://calendly.com/integrations/api_webhooks
CALENDLY_API_TOKEN=your_calendly_personal_access_token
# Elevenlabs API - Get from https://elevenlabs.io/app/account
ELEVENLABS_API_KEY=your_elevenlabs_api_key
# GitHub Access - For prompt editing, create at https://github.com/settings/tokens
# Needs 'repo' permissions
GITHUB_TOKEN=your_github_personal_access_token
GITHUB_REPO_OWNER=your_github_username
GITHUB_REPO_NAME=your_repository_name
# =========================================
# Server Security
# =========================================
# API Key for securing endpoints (use a strong random value)
API_KEY=create_a_strong_random_string_here
# Password for admin pages (agent builder, prompt builder)
ADMIN_PASSWORD=set_a_strong_password_here
# Server Port (default: 3000)
PORT=3000
# =========================================
# SMS Configuration (Optional)
# =========================================
# Enable SMS functionality (true/false)
ENABLE_SMS=true
# Twilio configuration
# Get from https://www.twilio.com/console
TWILIO_ACCOUNT_SID=your_twilio_account_sid
TWILIO_AUTH_TOKEN=your_twilio_auth_token
TWILIO_PHONE_NUMBER=your_twilio_phone_number_with_country_code
# =========================================
# Time Zone Configuration
# =========================================
# Set your default time zone for date/time formatting when
# automatic detection from phone number fails.
#
# Common time zones:
# - 'Europe/London' (UK)
# - 'America/New_York' (US Eastern)
# - 'America/Chicago' (US Central)
# - 'America/Denver' (US Mountain)
# - 'America/Los_Angeles' (US Pacific)
# - 'Europe/Paris' (France, Central Europe)
# - 'Asia/Tokyo' (Japan)
# - 'Australia/Sydney' (Australia Eastern)
#
# Find your time zone: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
DEFAULT_TIMEZONE=UTC