# Docker Compose Override for Local Development # This file is automatically merged with docker-compose.yml # Use this for developer-specific configurations version: '3.8' services: backend: # Uncomment to enable debugging # ports: # - "5002:5002" # Debug port environment: # Enable detailed error pages ASPNETCORE_DETAILEDERRORS: "true" # Enable developer exception page ASPNETCORE_ENVIRONMENT: Development frontend: # Hot reload is already enabled via volume mounts environment: # Enable Next.js development features NEXT_TELEMETRY_DISABLED: 1