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.

28 lines
1015 B

9 months ago
9 months ago
9 months ago
9 months ago
  1. require_relative 'boot'
  2. require 'rails/all'
  3. # Require the gems listed in Gemfile, including any gems
  4. # you've limited to :test, :development, or :production.
  5. Bundler.require(*Rails.groups)
  6. module Debug
  7. # Main Application
  8. class Application < Rails::Application
  9. # Initialize configuration defaults for originally generated Rails version.
  10. config.load_defaults 7.1
  11. # Please, add to the `ignore` list any other `lib` subdirectories that do
  12. # not contain `.rb` files, or that should not be reloaded or eager loaded.
  13. # Common ones are `templates`, `generators`, or `middleware`, for example.
  14. config.autoload_lib(ignore: %w[assets tasks])
  15. # Configuration for the application, engines, and railties goes here.
  16. #
  17. # These settings can be overridden in specific environments using the files
  18. # in config/environments, which are processed later.
  19. #
  20. # config.time_zone = "Central Time (US & Canada)"
  21. # config.eager_load_paths << Rails.root.join("extras")
  22. #
  23. end
  24. end