Files
ColaFlow/docker-compose.override.yml
Yaojia Wang 014d62bcc2 Project Init
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-02 23:55:18 +01:00

24 lines
617 B
YAML

# 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