Files
spreewaldzeit/.env.example

29 lines
1012 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# -------------------------------------------------------------
# Spreewaldzeit Environment Variables
# Kopiere diese Datei nach `.env` und trage echte Werte ein.
# -------------------------------------------------------------
# Datenbank (SQLite lokal; später z. B. Postgres)
DATABASE_URL="file:./dev.db"
# Basis-URL der Website (für Links in Mails)
NEXT_PUBLIC_SITE_URL="http://localhost:3000"
# Admin-Login (einmaliger Seed-Account; Passwort wird gehasht gespeichert)
ADMIN_EMAIL="admin@spreewaldzeit.de"
ADMIN_PASSWORD="bitte-sofort-aendern"
# Secret für signierte Session-Cookies (mind. 32 Zeichen, zufällig!)
# Generieren: openssl rand -base64 48
AUTH_SECRET="change-me-to-a-long-random-string-min-32-chars"
# E-Mail-Versand (SMTP). Ohne diese Werte werden Mails nur ins Terminal geloggt.
SMTP_HOST=""
SMTP_PORT="587"
SMTP_USER=""
SMTP_PASSWORD=""
SMTP_FROM="Spreewaldzeit <noreply@spreewaldzeit.de>"
# Empfänger für eingehende Anfragen (Vermieter)
OWNER_EMAIL="vermieter@spreewaldzeit.de"