22 lines
701 B
Ruby
22 lines
701 B
Ruby
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 SXRestaurants
|
|
class Application < Rails::Application
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
# Application configuration should go into files in config/initializers
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
config.active_record.time_zone_aware_types = [:datetime, :time]
|
|
config.active_job.queue_adapter = :sidekiq
|
|
|
|
# config.generators do |g|
|
|
# g.orm :active_record, primary_key_type: :uuid
|
|
# end
|
|
end
|
|
end
|