import Config # Note we also include the path to a cache manifest # containing the digested version of static files. This # manifest is generated by the `mix assets.deploy` task, # which you should run after static files are built and # before starting your production server. config :da_product_app, DaProductAppWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" # Configures Swoosh API Client config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: DaProductApp.Finch # Disable Swoosh Local Memory Storage config :swoosh, local: false # Do not print debug messages in production config :logger, level: :info # Reversal configuration for production # Conservative defaults - feature flags disabled, enable via runtime.exs config :da_product_app, :reversal, stale_transaction_threshold_seconds: 45, response_timeout_seconds: 30, max_retry_attempts: 3, retry_delay_seconds: 60, connection_recovery_timeout_seconds: 30, startup_cleanup_age_threshold_minutes: 5, scheduled_cleanup_interval_minutes: 15, # Feature flags - controlled via environment variables in runtime.exs automatic_reversal_enabled: false, cleanup_worker_enabled: false, retry_worker_enabled: false, connection_loss_handler_enabled: false # Runtime production configuration, including reading # of environment variables, is done on config/runtime.exs.