2019-08-14 09:48:44 +00:00
|
|
|
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 on
|
|
|
|
# every request. 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
|
2019-08-19 08:19:57 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
# Enable/disable caching. By default caching is disabled.
|
2019-08-19 08:19:57 +00:00
|
|
|
# Run rails dev:cache to toggle caching.
|
2019-12-22 17:23:18 +00:00
|
|
|
if Rails.root.join('tmp/caching-dev.txt').exist?
|
2019-08-14 09:48:44 +00:00
|
|
|
config.action_controller.perform_caching = true
|
2019-08-19 08:19:57 +00:00
|
|
|
config.action_controller.enable_fragment_cache_logging = true
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
config.cache_store = :memory_store
|
|
|
|
config.public_file_server.headers = {
|
2019-08-19 08:19:57 +00:00
|
|
|
'Cache-Control' => "public, max-age=#{2.days.to_i}"
|
2019-08-14 09:48:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
config.cache_store = :null_store
|
|
|
|
end
|
2019-12-22 17:23:18 +00:00
|
|
|
config.public_file_server.enabled = true
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-08-19 08:19:57 +00:00
|
|
|
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
|
|
config.active_storage.service = :local
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2019-12-24 21:33:02 +00:00
|
|
|
config.active_job.queue_adapter = :sidekiq
|
2020-01-23 17:29:07 +00:00
|
|
|
|
2020-05-20 14:32:28 +00:00
|
|
|
# Email related config
|
2019-08-14 09:48:44 +00:00
|
|
|
config.action_mailer.perform_caching = false
|
2019-08-19 08:19:57 +00:00
|
|
|
config.action_mailer.perform_deliveries = true
|
2019-12-22 17:23:18 +00:00
|
|
|
config.action_mailer.raise_delivery_errors = true
|
2020-05-20 14:32:28 +00:00
|
|
|
config.action_mailer.default_url_options = { host: ENV['FRONTEND_URL'] }
|
2020-01-23 17:29:07 +00:00
|
|
|
|
2019-12-22 17:23:18 +00:00
|
|
|
smtp_settings = {
|
2020-01-23 17:29:07 +00:00
|
|
|
port: ENV['SMTP_PORT'] || 25,
|
|
|
|
domain: ENV['SMTP_DOMAIN'] || 'localhost',
|
|
|
|
address: ENV['SMTP_ADDRESS'] || 'chatwoot.com'
|
2019-12-22 17:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ENV['SMTP_AUTHENTICATION'].present?
|
|
|
|
smtp_settings[:user_name] = ENV['SMTP_USERNAME']
|
|
|
|
smtp_settings[:password] = ENV['SMTP_PASSWORD']
|
|
|
|
smtp_settings[:authentication] = ENV['SMTP_AUTHENTICATION']
|
|
|
|
smtp_settings[:enable_starttls_auto] = ENV['SMTP_ENABLE_STARTTLS_AUTO'] if ENV['SMTP_ENABLE_STARTTLS_AUTO'].present?
|
|
|
|
end
|
|
|
|
|
2020-05-20 14:32:28 +00:00
|
|
|
if ENV['LETTER_OPENER']
|
|
|
|
config.action_mailer.delivery_method = :letter_opener
|
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :smtp
|
|
|
|
config.action_mailer.smtp_settings = smtp_settings
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
|
2020-05-02 17:59:09 +00:00
|
|
|
# Set this to appropriate ingress service for which the options are :
|
|
|
|
# :relay for Exim, Postfix, Qmail
|
|
|
|
# :mailgun for Mailgun
|
|
|
|
# :mandrill for Mandrill
|
|
|
|
# :postmark for Postmark
|
|
|
|
# :sendgrid for Sendgrid
|
|
|
|
config.action_mailbox.ingress = ENV.fetch('RAILS_INBOUND_EMAIL_SERVICE', 'relay').to_sym
|
|
|
|
|
2020-05-20 14:32:28 +00:00
|
|
|
Rails.application.routes.default_url_options = { host: ENV['FRONTEND_URL'] }
|
2019-12-15 18:23:04 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
# Print deprecation notices to the Rails logger.
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
|
|
config.active_record.migration_error = :page_load
|
|
|
|
|
2019-08-19 08:19:57 +00:00
|
|
|
# Highlight code that triggered database queries in logs.
|
|
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
# 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 = true
|
|
|
|
|
|
|
|
# Suppress logger output for asset requests.
|
|
|
|
config.assets.quiet = true
|
|
|
|
|
2019-08-19 08:19:57 +00:00
|
|
|
# Raises error for missing translations.
|
2019-08-14 09:48:44 +00:00
|
|
|
# config.action_view.raise_on_missing_translations = true
|
|
|
|
|
|
|
|
# Use an evented file watcher to asynchronously detect changes in source code,
|
|
|
|
# routes, locales, etc. This feature depends on the listen gem.
|
|
|
|
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
2019-08-19 08:21:20 +00:00
|
|
|
|
|
|
|
# Disable host check during development
|
|
|
|
config.hosts = nil
|
2019-11-25 18:25:18 +00:00
|
|
|
|
2020-03-17 20:10:34 +00:00
|
|
|
# customize using the environment variables
|
|
|
|
config.log_level = ENV.fetch('LOG_LEVEL', 'debug').to_sym
|
|
|
|
|
|
|
|
# Use a different logger for distributed setups.
|
|
|
|
# require 'syslog/logger'
|
|
|
|
config.logger = ActiveSupport::Logger.new(Rails.root.join('log', Rails.env + '.log'), 1, ENV.fetch('LOG_SIZE', '1024').to_i.megabytes)
|
|
|
|
|
2019-11-25 18:25:18 +00:00
|
|
|
# Bullet configuration to fix the N+1 queries
|
|
|
|
config.after_initialize do
|
|
|
|
Bullet.enable = true
|
|
|
|
Bullet.bullet_logger = true
|
|
|
|
Bullet.rails_logger = true
|
|
|
|
end
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|