API de comptabilité horaire.
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.

development.rb 2.3KB

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