--- # Development Environment Overlay # Applied to base DTO manifest for development environment apiVersion: dto/v1 kind: EnvironmentOverlay metadata: name: development target_manifest: dto_manifest.yaml # Resource constraints for development resources: cpu_cores: 2 memory_gb: 4 disk_gb: 50 # Service-specific overrides service_overrides: dto-dragonfly-cluster: memory_limit: 512MB nodes: 1 # Single node for dev dto-janusgraph: heap_size: 1GB storage_backend: inmemory dto-nats-server: max_connections: 100 max_payload: 1MB # Port overrides for development port_overrides: dto-dragonfly-cluster: [19000] # Single port for single node dto-slack-automation: [3002] # Avoid conflicts dto-jira-webhooks: [8081] # Avoid conflicts dto-health-monitor: [8091] # Avoid conflicts # Logging configuration logging: level: DEBUG output: console max_file_size: 10MB max_files: 3 # Development-specific features development_features: mock_external_apis: true debug_mode: true auto_reload: true test_data_injection: true # Syncthing configuration syncthing: enabled: false # Disabled in development reason: "Local development doesn't need distributed sync"