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.

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