main
 1require "active_support/core_ext/integer/time"
 2
 3Rails.application.configure do
 4  # Settings specified here will take precedence over those in config/application.rb.
 5
 6  # In the development environment your application's code is reloaded any time
 7  # it changes. This slows down response time but is perfect for development
 8  # since you don't have to restart the web server when you make code changes.
 9  config.cache_classes = false
10
11  # Do not eager load code on boot.
12  config.eager_load = false
13
14  # Show full error reports.
15  config.consider_all_requests_local = true
16
17  # Enable/disable caching. By default caching is disabled.
18  # Run rails dev:cache to toggle caching.
19  if Rails.root.join('tmp', 'caching-dev.txt').exist?
20    config.action_controller.perform_caching = true
21    config.action_controller.enable_fragment_cache_logging = true
22
23    config.cache_store = :memory_store
24    config.public_file_server.headers = {
25      'Cache-Control' => "public, max-age=#{2.days.to_i}"
26    }
27  else
28    config.action_controller.perform_caching = false
29
30    config.cache_store = :null_store
31  end
32
33  # Print deprecation notices to the Rails logger.
34  config.active_support.deprecation = :log
35
36  # Raise exceptions for disallowed deprecations.
37  config.active_support.disallowed_deprecation = :raise
38
39  # Tell Active Support which deprecation messages to disallow.
40  config.active_support.disallowed_deprecation_warnings = []
41
42  # Raise an error on page load if there are pending migrations.
43  config.active_record.migration_error = :page_load
44
45  # Highlight code that triggered database queries in logs.
46  config.active_record.verbose_query_logs = true
47
48
49  # Raises error for missing translations.
50  # config.i18n.raise_on_missing_translations = true
51
52  # Annotate rendered view with file names.
53  # config.action_view.annotate_rendered_view_with_filenames = true
54
55  # Use an evented file watcher to asynchronously detect changes in source code,
56  # routes, locales, etc. This feature depends on the listen gem.
57  # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
58
59  # Uncomment if you wish to allow Action Cable access from any origin.
60  # config.action_cable.disable_request_forgery_protection = true
61
62  config.hosts << /[a-z0-9]+\.ngrok\.io/
63end