-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapplication.rb
31 lines (25 loc) · 1.02 KB
/
application.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require_relative 'boot'
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
module AddressMover
class Application < Rails::Application
config.generators do |generate|
generate.assets false
generate.helper false
generate.test_framework :test_unit, fixture: false
end
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 6.0
# 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.
# config.active_job.queue_adapter = :sidekiq
config.active_job.queue_adapter = :sucker_punch
# Dotenv -- I suspect it's loaded automatically:
# Dotenv::Railtie.load
# HOSTNAME = ENV['HOSTNAME']
end
end