[Rails] Wine cellar inventory tracker.
1
require"active_support/core_ext/integer/time"
2
3
Rails.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.enable_reloading = true
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 server timing.
18
config.server_timing = true
19
20
# Enable/disable caching. By default caching is disabled.
21
# Run rails dev:cache to toggle caching.
22
if Rails.root.join("tmp/caching-dev.txt").exist?
23
config.action_controller.perform_caching = true
24
config.action_controller.enable_fragment_cache_logging = true
25
26
config.cache_store = :memory_store
27
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
28
else
29
config.action_controller.perform_caching = false
30
31
config.cache_store = :null_store
32
end
33
34
# Store uploaded files on the local file system (see config/storage.yml for options).
35
config.active_storage.service = :local
36
37
# Don't care if the mailer can't send.
38
config.action_mailer.raise_delivery_errors = false
39
40
# Disable caching for Action Mailer templates even if Action Controller
41
# caching is enabled.
42
config.action_mailer.perform_caching = false
43
44
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
45
46
# Print deprecation notices to the Rails logger.
47
config.active_support.deprecation = :log
48
49
# Raise exceptions for disallowed deprecations.
50
config.active_support.disallowed_deprecation = :raise
51
52
# Tell Active Support which deprecation messages to disallow.
53
config.active_support.disallowed_deprecation_warnings = []
54
55
# Raise an error on page load if there are pending migrations.
56
config.active_record.migration_error = :page_load
57
58
# Highlight code that triggered database queries in logs.
59
config.active_record.verbose_query_logs = true
60
61
# Highlight code that enqueued background job in logs.
62
config.active_job.verbose_enqueue_logs = true
63
64
# Suppress logger output for asset requests.
65
config.assets.quiet = true
66
67
# Raises error for missing translations.
68
# config.i18n.raise_on_missing_translations = true
69
70
# Annotate rendered view with file names.
71
config.action_view.annotate_rendered_view_with_filenames = true
72
73
# Uncomment if you wish to allow Action Cable access from any origin.
74
# config.action_cable.disable_request_forgery_protection = true
75
76
# Raise error when a before_action's only/except options reference missing actions.
77
config.action_controller.raise_on_missing_callback_actions = true
78
79
# Apply autocorrection by RuboCop to files generated by `bin/rails generate`.
80
# config.generators.apply_rubocop_autocorrect_after_generate!
81
end
82