You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.8 KiB

9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
  1. require 'active_support/core_ext/integer/time'
  2. require_relative '../../lib/formatter/colored_formatter'
  3. Rails.application.configure do # rubocop:disable Metrics/BlockLength
  4. # Settings specified here will take precedence over those in config/application.rb.
  5. # In the development environment your application's code is reloaded any time
  6. # it changes. This slows down response time but is perfect for development
  7. # since you don't have to restart the web server when you make code changes.
  8. config.enable_reloading = true
  9. # Do not eager load code on boot.
  10. config.eager_load = false
  11. # Show full error reports.
  12. config.consider_all_requests_local = true
  13. # Enable server timing
  14. config.server_timing = true
  15. # Enable/disable caching. By default caching is disabled.
  16. # Run rails dev:cache to toggle caching.
  17. if Rails.root.join('tmp/caching-dev.txt').exist?
  18. config.action_controller.perform_caching = true
  19. config.action_controller.enable_fragment_cache_logging = true
  20. config.cache_store = :memory_store
  21. config.public_file_server.headers = {
  22. 'Cache-Control' => "public, max-age=#{2.days.to_i}"
  23. }
  24. else
  25. config.action_controller.perform_caching = false
  26. config.cache_store = :null_store
  27. end
  28. # Store uploaded files on the local file system (see config/storage.yml for options).
  29. config.active_storage.service = :local
  30. # Don't care if the mailer can't send.
  31. config.action_mailer.raise_delivery_errors = false
  32. config.action_mailer.perform_caching = false
  33. # Print deprecation notices to the Rails logger.
  34. config.active_support.deprecation = :log
  35. # Raise exceptions for disallowed deprecations.
  36. config.active_support.disallowed_deprecation = :raise
  37. # Tell Active Support which deprecation messages to disallow.
  38. config.active_support.disallowed_deprecation_warnings = []
  39. # Raise an error on page load if there are pending migrations.
  40. config.active_record.migration_error = :page_load
  41. # Highlight code that triggered database queries in logs.
  42. config.active_record.verbose_query_logs = true
  43. # Highlight code that enqueued background job in logs.
  44. config.active_job.verbose_enqueue_logs = true
  45. # Suppress logger output for asset requests.
  46. config.assets.quiet = true
  47. # Raises error for missing translations.
  48. # config.i18n.raise_on_missing_translations = true
  49. # Annotate rendered view with file names.
  50. # config.action_view.annotate_rendered_view_with_filenames = true
  51. # Uncomment if you wish to allow Action Cable access from any origin.
  52. # config.action_cable.disable_request_forgery_protection = true
  53. # Raise error when a before_action's only/except options reference missing actions
  54. config.action_controller.raise_on_missing_callback_actions = true
  55. # Colorful Simple Logger Formatter
  56. config.log_formatter = ColoredFormatter.new
  57. end
  58. Rainbow.enabled = true