26 lines
695 B
Plaintext
26 lines
695 B
Plaintext
# Database
|
|
DATABASE_URL=postgresql+asyncpg://waitlist:changeme@localhost:5432/waitlist_db
|
|
|
|
# CORS — comma-separated allowed origins
|
|
ALLOWED_ORIGINS=https://adiuvai.com,https://www.adiuvai.com
|
|
|
|
# Rate limiting
|
|
RATE_LIMIT_PER_MINUTE=5
|
|
|
|
# Set to "production" in prod to enforce strict origin checks
|
|
ENVIRONMENT=development
|
|
|
|
# Brevo (email) — leave BREVO_API_KEY empty to disable email features
|
|
BREVO_API_KEY=
|
|
BREVO_SENDER_EMAIL=noreply@adiuvai.com
|
|
BREVO_SENDER_NAME=adiuvAI
|
|
BREVO_LIST_ID=0
|
|
|
|
# Confirmation link
|
|
CONFIRM_SECRET=replace-with-a-long-random-string
|
|
CONFIRM_BASE_URL=https://adiuvai.com
|
|
CONFIRM_TOKEN_EXPIRY_HOURS=48
|
|
|
|
# Daily report — leave empty to disable
|
|
REPORT_RECIPIENT_EMAIL=
|