-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
20 lines (16 loc) · 854 Bytes
/
Copy pathenv.example
File metadata and controls
20 lines (16 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Database
DATABASE_URL="postgresql://..."
DIRECT_URL="postgresql://..."
# AI trip proposals — https://console.anthropic.com/
# Put the full key on ONE line. If you paste a long key, do not let it wrap to the next line unless
# the whole value is inside quotes: ANTHROPIC_API_KEY="sk-ant-api03-...."
# Prefer .env.local for secrets (gitignored); Next.js loads .env then .env.local (local overrides).
ANTHROPIC_API_KEY="sk-ant-api03-..."
# Public base URL for links in emails (quote print, etc.)
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Optional — comma-separated. When set, “Send to client” on a quote emails this address for review
# after the quotation is linked on the client file (fiche client).
QUOTE_REVIEW_EMAIL=""
# Email (Resend) — https://resend.com
RESEND_API_KEY=""
EMAIL_FROM="Colombie sur mesure <onboarding@resend.dev>"