-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
66 lines (54 loc) · 2.13 KB
/
env.example
File metadata and controls
66 lines (54 loc) · 2.13 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
# Server Configuration
PORT=3002
NODE_ENV=development
# Database Configuration (Neon PostgreSQL)
# Required! Get your connection string from Neon console
DATABASE_URL=postgresql://neondb_owner:xxx@ep-xxx-pooler.region.aws.neon.tech/neondb?sslmode=require
# Security
JWT_SECRET=your-super-secret-jwt-key-change-in-production
WEBHOOK_SECRET=your-webhook-validation-secret
# ============================================
# META/FACEBOOK INTEGRATION
# ============================================
# For fetching lead details from Meta Lead Ads
META_PAGE_ACCESS_TOKEN=your-page-access-token
META_APP_SECRET=your-app-secret
# Webhook verification token (set in Meta Developer Console)
# Use: lead_pipeline_verify
META_VERIFY_TOKEN=lead_pipeline_verify
# ============================================
# CAL.COM INTEGRATION
# ============================================
CALCOM_API_KEY=
CALCOM_WEBHOOK_SECRET=cal_webhook_secret
# ============================================
# EMAIL SERVICE (Spacemail SMTP)
# ============================================
# ROTATES between 2 accounts to avoid spam filters
# Steps 1-12: Account 1 (haarith@)
# Steps 13-24: Account 2 (sales@)
SMTP_HOST=mail.spacemail.com
SMTP_PORT=465
SMTP_SECURE=true
# Account 1: haarith@structurelogistics.com (steps 1-12)
SMTP_USER=haarith@structurelogistics.com
SMTP_PASS=BeastLemon0912!
# Account 2: sales@structurelogistics.com (steps 13-24)
SMTP_USER_2=sales@structurelogistics.com
SMTP_PASS_2=Sales@StructureAI!1
# ============================================
# WHATSAPP SERVICE (Evolution API)
# ============================================
# Evolution API configuration
EVOLUTION_API_URL=https://your-evolution-instance.com
EVOLUTION_API_KEY=47AB4E03B894-421B-8F28-91D255097A26
EVOLUTION_INSTANCE=your-instance-name
# ============================================
# CALENDAR LINK (for email templates)
# ============================================
CALENDAR_LINK=https://cal.com/structure-1rtlm8/ai-qualification-call
# ============================================
# FRONTEND (for CORS)
# ============================================
FRONTEND_URL=http://localhost:5173
VITE_API_URL=http://localhost:3002/api