- Neue Docker-Struktur: docker/{dev,prod}/ für klare Trennung
- Entfernt: docker-compose.override.yml (problematisch)
- Hinzugefügt: ./dev.sh und ./prod.sh Scripts für einfache Bedienung
- Container-spezifische Konfigurationen in docker/{dev,prod}/*/config/
- Aktualisierte READMEs für neue Struktur
- Backend-Daten in .gitignore hinzugefügt
- Bereinigt: Veraltete Dockerfiles und Konfigurationsdateien
Jetzt: Wartungsfreundlich, keine Verwirrung zwischen Umgebungen
15 lines
374 B
Plaintext
15 lines
374 B
Plaintext
# Backend Environment Variables
|
|
# Copy this file to .env and adjust values for local development
|
|
|
|
# Whether to remove images when starting the server (cleanup)
|
|
REMOVE_IMAGES=false
|
|
|
|
# Node.js environment (development, production, test)
|
|
NODE_ENV=development
|
|
|
|
# Port for the backend server
|
|
PORT=5000
|
|
|
|
# Database settings (if needed in future)
|
|
# DB_HOST=localhost
|
|
# DB_PORT=3306 |