2019-10-16 21:48:07 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
require_relative 'boot'
|
|
|
|
|
2019-10-16 21:48:07 +00:00
|
|
|
require 'rails/all'
|
2019-08-14 09:48:44 +00:00
|
|
|
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
|
|
# you've limited to :test, :development, or :production.
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
|
|
|
|
module Chatwoot
|
|
|
|
class Application < Rails::Application
|
2019-08-19 08:19:57 +00:00
|
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
|
|
config.load_defaults 5.0
|
2019-10-18 07:07:09 +00:00
|
|
|
|
2019-08-14 09:48:44 +00:00
|
|
|
config.autoload_paths << Rails.root.join('lib')
|
|
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
|
|
|
2019-08-19 08:19:57 +00:00
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration can go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded after loading
|
|
|
|
# the framework and any gems in your application.
|
2019-10-23 10:29:45 +00:00
|
|
|
config.generators.javascripts = false
|
2019-08-14 09:48:44 +00:00
|
|
|
end
|
|
|
|
end
|