25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
# =============================================
|
|
# Produktion — .env Vorlage
|
|
# Kopieren als: innungsapp/.env
|
|
# =============================================
|
|
|
|
# Auth — UNBEDINGT ändern!
|
|
BETTER_AUTH_SECRET="min-32-zeichen-langer-zufalls-string"
|
|
BETTER_AUTH_URL="https://yourdomain.com"
|
|
|
|
# Email (SMTP)
|
|
EMAIL_FROM="noreply@yourdomain.com"
|
|
SMTP_HOST="smtp.example.com"
|
|
SMTP_PORT="587"
|
|
SMTP_SECURE="false"
|
|
SMTP_USER="user@example.com"
|
|
SMTP_PASS="your-smtp-password"
|
|
|
|
# Öffentliche URLs
|
|
NEXT_PUBLIC_APP_URL="https://yourdomain.com"
|
|
NEXT_PUBLIC_POSTHOG_KEY=""
|
|
NEXT_PUBLIC_POSTHOG_HOST="https://us.i.posthog.com"
|
|
|
|
# Uploads
|
|
UPLOAD_MAX_SIZE_MB="10"
|