Sprankelprachtig aan/afmeldsysteem

development.rb 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # In the development environment your application's code is reloaded on
  4. # every request. This slows down response time but is perfect for development
  5. # since you don't have to restart the web server when you make code changes.
  6. config.cache_classes = false
  7. # Do not eager load code on boot.
  8. config.eager_load = false
  9. # Show full error reports.
  10. config.consider_all_requests_local = true
  11. # Enable/disable caching. By default caching is disabled.
  12. if Rails.root.join('tmp', 'caching-dev.txt').exist?
  13. config.action_controller.perform_caching = true
  14. config.cache_store = :memory_store
  15. config.public_file_server.headers = {
  16. 'Cache-Control' => 'public, max-age=172800'
  17. }
  18. else
  19. config.action_controller.perform_caching = false
  20. config.cache_store = :null_store
  21. end
  22. # Don't care if the mailer can't send.
  23. config.action_mailer.raise_delivery_errors = false
  24. config.action_mailer.perform_caching = false
  25. # Print deprecation notices to the Rails logger.
  26. config.active_support.deprecation = :log
  27. # Raise an error on page load if there are pending migrations.
  28. config.active_record.migration_error = :page_load
  29. # Debug mode disables concatenation and preprocessing of assets.
  30. # This option may cause significant delays in view rendering with a large
  31. # number of complex assets.
  32. config.assets.debug = true
  33. # Suppress logger output for asset requests.
  34. config.assets.quiet = true
  35. # Raises error for missing translations
  36. # config.action_view.raise_on_missing_translations = true
  37. # Use an evented file watcher to asynchronously detect changes in source code,
  38. # routes, locales, etc. This feature depends on the listen gem.
  39. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  40. config.action_mailer.delivery_method = ENV['MAIL_METHOD'].to_sym
  41. config.action_mailer.smtp_settings = {
  42. address: ENV['SMTP_SERVER'],
  43. user_name: ENV['SMTP_USER'],
  44. password: ENV['SMTP_PASS'],
  45. authentication: :plain
  46. }
  47. config.action_mailer.mailgun_settings = {
  48. api_key: ENV['MAILGUN_API_KEY'],
  49. domain: ENV['MAILGUN_DOMAIN']
  50. }
  51. end