2017-11-10 17:02:35 +01:00
|
|
|
# Foodsoft development configuration.
|
|
|
|
#
|
|
|
|
# This file is in the public domain.
|
|
|
|
|
2020-09-04 12:57:19 +02:00
|
|
|
Rails.application.configure do
|
2014-02-20 15:04:53 +01:00
|
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2011-05-11 10:13:56 +02:00
|
|
|
# In the development environment your application's code is reloaded on
|
2014-02-20 15:04:53 +01:00
|
|
|
# every request. This slows down response time but is perfect for development
|
2012-09-30 21:15:55 +02:00
|
|
|
# since you don't have to restart the web server when you make code changes.
|
2011-05-11 10:13:56 +02:00
|
|
|
config.cache_classes = false
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2014-02-20 15:04:53 +01:00
|
|
|
# Do not eager load code on boot.
|
|
|
|
config.eager_load = false
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2020-09-04 12:57:19 +02:00
|
|
|
# Show full error reports.
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
|
|
|
|
# Enable/disable caching. By default caching is disabled.
|
2020-08-01 00:20:42 +02:00
|
|
|
# Run rails dev:cache to toggle caching.
|
|
|
|
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
2020-09-04 12:57:19 +02:00
|
|
|
config.action_controller.perform_caching = true
|
|
|
|
|
|
|
|
config.cache_store = :memory_store
|
|
|
|
config.public_file_server.headers = {
|
2020-08-01 00:20:42 +02:00
|
|
|
'Cache-Control' => "public, max-age=#{2.days.to_i}"
|
2020-09-04 12:57:19 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
config.cache_store = :null_store
|
|
|
|
end
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2022-01-31 08:44:53 +01:00
|
|
|
# Store uploaded files on the local file system (see config/storage.yml for options)
|
|
|
|
config.active_storage.service = :local
|
|
|
|
|
2014-02-20 15:04:53 +01:00
|
|
|
# Don't care if the mailer can't send.
|
2011-05-11 10:13:56 +02:00
|
|
|
config.action_mailer.raise_delivery_errors = false
|
2009-01-06 11:49:19 +01:00
|
|
|
|
2020-09-04 12:57:19 +02:00
|
|
|
config.action_mailer.perform_caching = false
|
|
|
|
|
2014-02-20 15:04:53 +01:00
|
|
|
# Print deprecation notices to the Rails logger.
|
2011-05-11 10:13:56 +02:00
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
2020-09-04 12:57:19 +02:00
|
|
|
# Raise an error on page load if there are pending migrations.
|
2014-02-20 15:04:53 +01:00
|
|
|
config.active_record.migration_error = :page_load
|
2012-09-30 21:15:55 +02:00
|
|
|
|
2014-02-20 15:04:53 +01: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.
|
2012-09-30 21:15:55 +02:00
|
|
|
config.assets.debug = true
|
|
|
|
|
2019-10-29 02:43:51 +01:00
|
|
|
# Suppress logger output for asset requests.
|
|
|
|
config.assets.quiet = true
|
|
|
|
|
2013-10-04 14:53:22 +02:00
|
|
|
# Required for i18n-js
|
|
|
|
config.assets.initialize_on_precompile = true
|
|
|
|
|
2014-09-02 12:18:50 +02:00
|
|
|
# Configure hostname for action mailer (can be overridden in foodcoop config)
|
|
|
|
config.action_mailer.default_url_options = { host: 'localhost', port: 3000, protocol: 'http' }
|
2012-12-23 17:38:04 +01:00
|
|
|
|
|
|
|
# Mailcatcher config, start mailcatcher from console with 'mailcatcher'
|
|
|
|
# Mailcatcher can be installed by gem install mailcatcher
|
|
|
|
config.action_mailer.delivery_method = :smtp
|
2021-03-02 19:18:57 +01:00
|
|
|
config.action_mailer.smtp_settings = { address: ENV.fetch("MAILCATCHER_ADDRESS", "localhost"), port: ENV.fetch("MAILCATCHER_PORT", 1025) }
|
2014-05-31 14:20:45 +02:00
|
|
|
|
2020-09-04 12:57:19 +02:00
|
|
|
# Raises error for missing translations
|
|
|
|
# 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.
|
2020-07-31 23:47:14 +02:00
|
|
|
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
|
2020-09-04 12:57:19 +02:00
|
|
|
|
2014-05-31 14:20:45 +02:00
|
|
|
# Run resque tasks as part of the main app (not recommended for production)
|
2015-05-08 13:05:48 +02:00
|
|
|
Resque.inline = true unless ENV['REDIS_URL']
|
2013-10-04 14:53:22 +02:00
|
|
|
end
|