1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/config/environments/development.rb

106 lines
3.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2023-03-28 12:44:00 +02:00
require 'active_support/core_ext/integer/time'
2023-03-28 12:44:00 +02:00
Rails.application.configure do
2015-05-05 03:10:25 +02:00
# Settings specified here will take precedence over those in config/application.rb.
2023-03-28 12:44:00 +02:00
# In the development environment your application's code is reloaded any time
# it changes. This slows down response time but is perfect for development
2015-05-05 03:10:25 +02:00
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
2015-05-05 03:10:25 +02:00
# Do not eager load code on boot.
config.eager_load = false
2020-03-11 16:18:17 +01:00
# Show full error reports.
config.consider_all_requests_local = true
2023-03-28 12:44:00 +02:00
# Enable server timing
config.server_timing = true
2020-03-11 16:18:17 +01:00
# Enable/disable caching. By default caching is disabled.
2020-03-31 11:28:00 +02:00
# Run rails dev:cache to toggle caching.
2023-02-24 17:26:55 +01:00
if Rails.root.join('tmp/caching-dev.txt').exist?
2023-03-28 12:44:00 +02:00
config.action_controller.perform_caching = true
config.action_controller.enable_fragment_cache_logging = true
config.cache_store = :memory_store
2020-03-11 16:18:17 +01:00
config.public_file_server.headers = {
2020-03-31 11:28:00 +02:00
'Cache-Control' => "public, max-age=#{2.days.to_i}"
2020-03-11 16:18:17 +01:00
}
else
config.action_controller.perform_caching = false
2015-05-05 03:10:25 +02:00
2023-03-28 12:44:00 +02:00
config.cache_store = :null_store
end
2023-03-28 12:44:00 +02:00
# Store uploaded files on the local file system (see config/storage.yml for options).
2020-03-31 11:28:00 +02:00
config.active_storage.service = :local
2015-05-05 03:10:25 +02:00
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
2020-03-11 16:18:17 +01:00
config.action_mailer.perform_caching = false
config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
address: Rails.application.secrets.smtp_address,
port: Rails.application.secrets.smtp_port
}
2020-03-11 16:18:17 +01:00
config.action_mailer.raise_delivery_errors = false
config.action_mailer.default_url_options = {
host: Rails.application.secrets.default_host,
protocol: Rails.application.secrets.default_protocol
}
2015-05-05 03:10:25 +02:00
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
2023-03-28 12:44:00 +02:00
# 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 = []
2015-05-05 03:10:25 +02:00
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
2020-03-31 11:28:00 +02:00
# Highlight code that triggered database queries in logs.
config.active_record.verbose_query_logs = true
2023-03-28 12:44:00 +02:00
# 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
2015-05-05 03:10:25 +02:00
2020-03-11 16:18:17 +01:00
# Use an evented file watcher to asynchronously detect changes in source code,
# routes, locales, etc. This feature depends on the listen gem.
2020-03-13 17:10:38 +01:00
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
2016-07-19 16:37:25 +02:00
config.log_level = Rails.application.secrets.log_level || :debug
2023-09-14 09:13:12 +02:00
config.log_tags = [:request_id]
2023-03-28 12:44:00 +02:00
config.action_controller.default_url_options = {
host: Rails.application.secrets.default_host,
protocol: Rails.application.secrets.default_protocol
}
# whitelist IP for web-console: local network, docker and vagrant
config.web_console.permissions = %w[192.168.0.0/16 192.168.99.0/16 10.0.2.2]
2023-02-24 17:26:55 +01:00
config.hosts << ENV.fetch('DEFAULT_HOST', 'localhost')
2023-03-28 12:44:00 +02:00
# https://github.com/flyerhzm/bullet
# In development, Bullet will find and report N+1 DB requests
config.after_initialize do
Bullet.enable = true
Bullet.alert = true
Bullet.bullet_logger = true
Bullet.console = true
Bullet.rails_logger = true
Bullet.add_footer = true
end
2023-02-24 17:26:55 +01:00
end