- 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
12 lines
512 B
Plaintext
12 lines
512 B
Plaintext
# Frontend Environment Variables
|
|
# These variables are used in both development and production containers
|
|
|
|
# Backend API URL - where the frontend should connect to the backend
|
|
# Development: http://backend-dev:5000 (container-to-container)
|
|
# Production: http://backend:5000 (container-to-container)
|
|
API_URL=http://backend:5000
|
|
|
|
# Client URL - the URL where users access the frontend
|
|
# Development: http://localhost:3000 (dev server)
|
|
# Production: http://localhost (nginx on port 80)
|
|
CLIENT_URL=http://localhost |