EvoBal/config/application.rb

33 lines
966 B
Ruby
Raw Normal View History

2021-02-07 16:46:01 +01:00
require_relative "boot"
2020-10-17 12:16:28 +02:00
2021-02-07 16:46:01 +01:00
require "rails/all"
require "elasticsearch/rails/instrumentation"
2020-10-17 12:16:28 +02:00
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module Evobal
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
2021-02-06 15:50:38 +01:00
config.load_defaults 6.1
2020-10-17 12:16:28 +02:00
2021-02-07 16:46:01 +01:00
# Configuration for the application, engines, and railties goes here.
#
# These settings can be overridden in specific environments using the files
# in config/environments, which are processed later.
#
# config.time_zone = "Central Time (US & Canada)"
# config.eager_load_paths << Rails.root.join("extras")
2021-02-07 16:46:01 +01:00
config.active_job.queue_adapter = :sidekiq
console do
# this block is called only when running console,
# so we can safely require pry here
require "pry"
config.console = Pry
end
2020-10-17 12:16:28 +02:00
end
end