mysociety/alaveteli

View on GitHub
config/environments/development.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "active_support/core_ext/integer/time"

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded any time
  # it changes. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports.
  config.consider_all_requests_local = true

  # Enable/disable caching. By default caching is disabled.
  # Run rails dev:cache to toggle caching.
  if Rails.root.join('tmp', 'caching-dev.txt').exist?
    config.action_controller.perform_caching = true
    config.action_controller.enable_fragment_cache_logging = true

    config.cache_store = :memory_store
    config.public_file_server.headers = {
      'Cache-Control' => "public, max-age=#{2.days.to_i}"
    }
  else
    config.action_controller.perform_caching = false

    config.cache_store = :null_store
  end

  # Don't care if the mailer can't send.
  config.action_mailer.raise_delivery_errors = false

  config.action_mailer.perform_caching = false

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise exceptions for disallowed deprecations.
  config.active_support.disallowed_deprecation = :raise

  # Tell Active Support which deprecation messages to disallow.
  config.active_support.disallowed_deprecation_warnings = []

  # Raise an error on page load if there are pending migrations.
  config.active_record.migration_error = :page_load

  # Highlight code that triggered database queries in logs.
  config.active_record.verbose_query_logs = true

  # Debug mode disables concatenation and preprocessing of assets.
  # This option may cause significant delays in view rendering with a large
  # number of complex assets.
  config.assets.debug = ENV.key?('ASSETS_DEBUG') || false

  # Suppress logger output for asset requests.
  config.assets.quiet = true

  # Raises error for missing translations.
  # config.i18n.raise_on_missing_translations = true

  # Annotate rendered view with file names.
  # config.action_view.annotate_rendered_view_with_filenames = true

  # Uncomment if you wish to allow Action Cable access from any origin.
  # config.action_cable.disable_request_forgery_protection = true

  # CUSTOM CONFIGURATION
  #
  # Always place custom environment config at the bottom of the file
  # to make Rails upgrades easier.
  # ----------------------------------------------------------------

  config.action_mailer.preview_path = Rails.root.join(
    'spec', 'mailers', 'previews'
  )

  # Set LOG_LEVEL in the environment to a valid log level to temporarily run the
  # application with a non-default setting.
  config.log_level = ENV.fetch('LOG_LEVEL', :debug)

  # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
  # the I18n.default_locale when a translation cannot be found).
  config.i18n.fallbacks = true

  if AlaveteliConfiguration.use_mailcatcher_in_development
    # So is queued, rather than giving immediate errors
    config.action_mailer.delivery_method = :smtp
    smtp = URI.parse(ENV.fetch('SMTP_URL', 'smtp://localhost:1025'))
    config.action_mailer.smtp_settings = { address: smtp.host, port: smtp.port }
  else
    config.action_mailer.delivery_method = :sendmail
  end

  # Allow any IP address in the range 10.10.10.x to access the web console
  config.web_console.allowed_ips = '10.10.10.0/16'

  # Writes useful log files to debug memory leaks, of the sort where have
  # unintentionally kept references to objects, especially strings.
  # require 'memory_profiler'
  # MemoryProfiler.start :string_debug => true, :delay => 10

  if AlaveteliConfiguration.use_bullet_in_development
    config.after_initialize do
      Bullet.enable = true
      Bullet.bullet_logger = true
      Bullet.console = true
      Bullet.add_footer = true
    end
  end
end