# Configuration de production pour Dockezr # Copiez ce fichier vers .env.prod et modifiez les valeurs # DockerHub Configuration DOCKERHUB_USERNAME=your-dockerhub-username DOCKERHUB_REPO=dockezr VERSION=latest # Base de données POSTGRES_USER=user POSTGRES_PASSWORD=your-secure-password POSTGRES_DB=dockezr DB_PORT=5432 # Services Ports BACKEND_PORT=8001 FRONTEND_PORT=3000 PROMETHEUS_PORT=9090 GRAFANA_PORT=3001 # Frontend Configuration NEXT_PUBLIC_API_URL=http://your-domain.com:8001 # Grafana Configuration GRAFANA_USER=admin GRAFANA_PASSWORD=your-secure-grafana-password # Production Settings NODE_ENV=production