-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
63 lines (53 loc) · 2.38 KB
/
Copy path.env.example
File metadata and controls
63 lines (53 loc) · 2.38 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
# SourceKit Environment Variables
# Copy this file to .env and fill in your actual values.
# NEVER commit .env to version control.
# --- Frontend (Vite) ---
VITE_SUPABASE_PROJECT_ID=your_supabase_project_id_here
VITE_SUPABASE_PUBLISHABLE_KEY=your_supabase_anon_key_here
VITE_SUPABASE_URL=https://your-project-ref.supabase.co
# --- Supabase Edge Functions (set in Supabase dashboard → Settings → Edge Functions) ---
SUPABASE_URL=https://your-project-ref.supabase.co
SUPABASE_ANON_KEY=your_supabase_anon_key_here
SUPABASE_SERVICE_ROLE_KEY=your_supabase_service_role_key_here
# --- External APIs ---
GITHUB_TOKEN=your_github_personal_access_token_here
ANTHROPIC_API_KEY=your_anthropic_api_key_here
EXA_API_KEY=your_exa_api_key_here
PARALLEL_API_KEY=your_parallel_api_key_here
FINDEM_API_KEY=your_findem_api_key_here
APOLLO_API_KEY=your_apollo_api_key_here
CLAY_API_KEY=your_clay_api_key_here
# --- BD sourcing mode ---
BD_INTEGRATION_MODE=manual
# --- Optional future Microsoft Graph / M365 (BD sourcing) ---
MICROSOFT_TENANT_ID=your_entra_tenant_id_here
MICROSOFT_CLIENT_ID=your_entra_app_client_id_here
MICROSOFT_CLIENT_SECRET=your_entra_app_client_secret_here
MICROSOFT_REDIRECT_URI=http://localhost:5173/auth/microsoft/callback
MICROSOFT_GRAPH_MAILBOX=operator@example.com
MICROSOFT_BOOKINGS_URL=https://outlook.office.com/book/your-bookings-page
# --- Optional future Salesforce (BD sourcing) ---
SALESFORCE_CLIENT_ID=your_salesforce_connected_app_client_id_here
SALESFORCE_CLIENT_SECRET=your_salesforce_connected_app_client_secret_here
SALESFORCE_USERNAME=operator@example.com
SALESFORCE_LOGIN_URL=https://login.salesforce.com
SALESFORCE_API_VERSION=v61.0
# --- BD sourcing operator settings ---
BD_OPERATOR_NAME=Operator Name
BD_OPERATOR_EMAIL=operator@example.com
BD_PHYSICAL_ADDRESS=123 Market St, San Francisco, CA
BD_UNSUBSCRIBE_BASE_URL=https://your-app.example.com/unsubscribe
BD_SENDING_DOMAIN=your-separated-sending-domain.example
APOLLO_SEQUENCE_ENABLED=false
INSTANTLY_SEQUENCE_ENABLED=false
# --- SellKit visible operator profile (safe to expose in browser) ---
VITE_SELLKIT_OPERATOR_NAME=Mariah Rubino
VITE_SELLKIT_OPERATOR_EMAIL=
VITE_SELLKIT_BOOKING_URL=
VITE_SELLKIT_PHYSICAL_ADDRESS=
# --- Stripe (payments) ---
STRIPE_SECRET_KEY=your_stripe_secret_key_here
STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret_here
STRIPE_PRICE_ID=your_stripe_price_id_here
# --- App ---
APP_URL=http://localhost:5173