logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

development.rb (3508B)


  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. # Run rails dev:cache to toggle caching.
  13. if Rails.root.join('tmp/caching-dev.txt').exist?
  14. config.action_controller.perform_caching = true
  15. config.cache_store = :redis_store, ENV['REDIS_URL'], REDIS_CACHE_PARAMS
  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. ActiveSupport::Logger.new(STDOUT).tap do |logger|
  24. logger.formatter = config.log_formatter
  25. config.logger = ActiveSupport::TaggedLogging.new(logger)
  26. end
  27. # Generate random VAPID keys
  28. vapid_key = Webpush.generate_key
  29. config.x.vapid_private_key = vapid_key.private_key
  30. config.x.vapid_public_key = vapid_key.public_key
  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 an error on page load if there are pending migrations.
  37. config.active_record.migration_error = :page_load
  38. # Debug mode disables concatenation and preprocessing of assets.
  39. # This option may cause significant delays in view rendering with a large
  40. # number of complex assets.
  41. config.assets.debug = true
  42. # Suppress logger output for asset requests.
  43. config.assets.quiet = true
  44. # Adds additional error checking when serving assets at runtime.
  45. # Checks for improperly declared sprockets dependencies.
  46. # Raises helpful error messages.
  47. config.assets.raise_runtime_errors = true
  48. # Raises error for missing translations
  49. # config.action_view.raise_on_missing_translations = true
  50. # Use an evented file watcher to asynchronously detect changes in source code,
  51. # routes, locales, etc. This feature depends on the listen gem.
  52. # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  53. config.action_mailer.default_options = { from: 'notifications@localhost' }
  54. # If using a Heroku, Vagrant or generic remote development environment,
  55. # use letter_opener_web, accessible at /letter_opener.
  56. # Otherwise, use letter_opener, which launches a browser window to view sent mail.
  57. config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
  58. config.after_initialize do
  59. Bullet.enable = true
  60. Bullet.bullet_logger = true
  61. Bullet.rails_logger = false
  62. Bullet.add_whitelist type: :n_plus_one_query, class_name: 'User', association: :account
  63. end
  64. config.x.otp_secret = ENV.fetch('OTP_SECRET', '1fc2b87989afa6351912abeebe31ffc5c476ead9bf8b3d74cbc4a302c7b69a45b40b1bbef3506ddad73e942e15ed5ca4b402bf9a66423626051104f4b5f05109')
  65. end
  66. ActiveRecordQueryTrace.enabled = ENV.fetch('QUERY_TRACE_ENABLED') { false }
  67. module PrivateAddressCheck
  68. def self.private_address?(*)
  69. false
  70. end
  71. end