Sha256: 38dad4e2988fcc89aa3c6a5e2cd7718f2062e0322cc514eeda351129f4c52897
Contents?: true
Size: 696 Bytes
Versions: 8
Compression:
Stored size: 696 Bytes
Contents
# typed: false # frozen_string_literal: true Rails.application.configure do # Configuration for the application, engines, and railties goes here. # # These settings can be overridden in specific environments using the files # in config/environments, which are processed later. # config.time_zone = "UTC" # Remove this in rails 8.1 as it will be the default config.active_support.to_time_preserves_timezone = :zone if Rails.env.test? config.active_job.queue_adapter = :test else config.active_job.queue_adapter = :solid_queue config.solid_queue.silence_polling = !Rails.env.local? config.solid_queue.connects_to = { database: { writing: :queue } } end end
Version data entries
8 entries across 8 versions & 1 rubygems