-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
40 lines (32 loc) · 2.8 KB
/
Copy path.env.example
File metadata and controls
40 lines (32 loc) · 2.8 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
# ── DATABASE ──────────────────────────────────────────────────────────────────
DATABASE_URL="postgresql://USER:PASSWORD@localhost:5432/maxev_admin"
# ── APP ───────────────────────────────────────────────────────────────────────
NEXT_PUBLIC_APP_URL="https://yourdomain.com"
INSTANCE_TYPE="production" # production | demo
# ── AI ────────────────────────────────────────────────────────────────────────
ANTHROPIC_API_KEY="sk-ant-..."
# ── EMAIL (Hostinger SMTP) ────────────────────────────────────────────────────
SMTP_HOST="smtp.hostinger.com"
SMTP_PORT="465"
SMTP_USER_INFO="info@yourdomain.com"
SMTP_USER_OUTREACH="outreach@yourdomain.com"
SMTP_USER_BILLING="billing@yourdomain.com"
SMTP_USER_NEWSLETTER="newsletter@yourdomain.com"
SMTP_PASS="your_smtp_password"
# ── PAYMENTS ──────────────────────────────────────────────────────────────────
STRIPE_SECRET_KEY="sk_live_..."
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY="pk_live_..."
STRIPE_WEBHOOK_SECRET="whsec_..."
# ── SMS ───────────────────────────────────────────────────────────────────────
TWILIO_ACCOUNT_SID="AC..."
TWILIO_AUTH_TOKEN="..."
TWILIO_PHONE="+1..."
# ── QUEUES ────────────────────────────────────────────────────────────────────
REDIS_URL="redis://localhost:6379"
# ── GOOGLE CALENDAR ───────────────────────────────────────────────────────────
GOOGLE_CLIENT_ID="...apps.googleusercontent.com"
GOOGLE_CLIENT_SECRET="GOCSPX-..."
GOOGLE_REDIRECT_URI="https://yourdomain.com/api/google/calendar/callback"
# ── INTERNAL ──────────────────────────────────────────────────────────────────
DEMO_INTERNAL_API_KEY="your_internal_key"
DEMO_APP_URL="http://localhost:3001"