# Production Environment Configuration for Registry Deployment # Copy this file to .env.production and adjust the values # Database Configuration MYSQL_PASSWORD=your_secure_mysql_password_here MYSQL_ROOT_PASSWORD=your_super_secure_root_password_here # CORS Origin - Your domain(s) CORS_ORIGIN=https://yourdomain.com # Docker Registry Authentication (for docker.citysensor.de) DOCKER_REGISTRY=docker.citysensor.de DOCKER_USERNAME=your_username_here DOCKER_PASSWORD=your_password_here # Docker Registry Images BACKEND_IMAGE=docker.citysensor.de/rezepte-backend:latest FRONTEND_IMAGE=docker.citysensor.de/rezepte-frontend:latest # Alternative: Docker Hub # BACKEND_IMAGE=your-username/rezepte-backend:latest # FRONTEND_IMAGE=your-username/rezepte-frontend:latest # Alternative: AWS ECR # BACKEND_IMAGE=123456789.dkr.ecr.eu-central-1.amazonaws.com/rezepte-backend:latest # FRONTEND_IMAGE=123456789.dkr.ecr.eu-central-1.amazonaws.com/rezepte-frontend:latest # Alternative: Azure Container Registry # BACKEND_IMAGE=yourregistry.azurecr.io/rezepte-backend:latest # FRONTEND_IMAGE=yourregistry.azurecr.io/rezepte-frontend:latest