35 lines
986 B
Plaintext
35 lines
986 B
Plaintext
# =============================================
|
|
# Produktion — .env Vorlage
|
|
# Kopieren als: innungsapp/.env
|
|
# =============================================
|
|
|
|
# Database (PostgreSQL)
|
|
POSTGRES_DB="innungsapp"
|
|
POSTGRES_USER="innungsapp"
|
|
POSTGRES_PASSWORD="change-this-db-password"
|
|
DATABASE_URL="postgresql://innungsapp:change-this-db-password@postgres:5432/innungsapp?schema=public"
|
|
|
|
# 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"
|
|
|
|
# Superadmin Seed
|
|
SUPERADMIN_EMAIL="superadmin@yourdomain.com"
|
|
SUPERADMIN_PASSWORD="change-this-superadmin-password"
|
|
|
|
# Uploads
|
|
UPLOAD_MAX_SIZE_MB="10"
|