33 lines
843 B
Plaintext
33 lines
843 B
Plaintext
# Environment-Konfiguration für lokale Entwicklung
|
|
# Diese Datei sollte in .env umbenannt werden und nicht in Git committet werden
|
|
|
|
# Node.js Environment
|
|
NODE_ENV=development
|
|
|
|
# Server-Konfiguration
|
|
PORT=3100
|
|
NUXT_PUBLIC_BASE_URL=http://localhost:3100
|
|
|
|
# SMTP-Konfiguration für E-Mail-Versand (nur für lokale Tests)
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=tsschulz@tsschulz.de
|
|
SMTP_PASS=your_app_password_here
|
|
|
|
# Alternative für GMX:
|
|
# SMTP_HOST=mail.gmx.net
|
|
# SMTP_PORT=587
|
|
|
|
# JWT Secret für lokale Entwicklung
|
|
JWT_SECRET=local_development_secret_key_change_in_production
|
|
|
|
# Verschlüsselungsschlüssel für persönliche Daten (MUSS in Produktion geändert werden!)
|
|
ENCRYPTION_KEY=local_development_encryption_key_change_in_production
|
|
|
|
# Datenbank/Datei-Pfade
|
|
DATA_PATH=server/data
|
|
|
|
# Debug-Modi
|
|
DEBUG=true
|
|
VERBOSE_LOGGING=true
|