Sha256: a9cb9339f19bf8a67ef26143ca96012b8abf8c44afa60ad76e5972050aa01ed7

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

Dummy::Application.configure do
  config.action_controller.perform_caching   = true
  config.action_mailer.default_url_options   = { :host => "applicants.usertesting.com" }
  config.action_mailer.delivery_method       = :smtp
  config.action_mailer.raise_delivery_errors = true
  config.action_mailer.smtp_settings = {
      address:              'email-smtp.us-east-1.amazonaws.com',
      domain:               'usertesting.com',
      password:             'AnCXdxM3UkSmzYTex7isd0La/AGDyS5bFVhe0dha+0JZ',
      port:                 587,
      user_name:            'AKIAJZZYJOCGBPPDXE7A',
      enable_starttls_auto: true
  }
  config.active_support.deprecation          = :notify
  config.assets.compile                      = false
  config.assets.compress                     = true
  config.assets.debug                        = false
  config.assets.digest                       = true
  config.cache_classes                       = true
  config.consider_all_requests_local         = false
  config.i18n.fallbacks                      = true
  config.serve_static_assets                 = false
  config.serve_static_assets                 = false

  # Set the logging destination(s)
  config.log_to = %w[file syslog]

  # Show the logging configuration on STDOUT
  config.show_log_configuration = false
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
applicants-0.11.0 spec/dummy/config/environments/production.rb