mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-03-26 16:06:31 +09:00
19 lines
453 B
Ruby
19 lines
453 B
Ruby
require_relative "boot"
|
|
|
|
require "rails/all"
|
|
|
|
Bundler.require(*Rails.groups)
|
|
|
|
module Campfire
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults for originally generated Rails version.
|
|
config.load_defaults 7.0
|
|
|
|
# Fallback to English if translation key is missing
|
|
config.i18n.fallbacks = true
|
|
|
|
# Use SQL schema format to include search-related objects
|
|
config.active_record.schema_format = :sql
|
|
end
|
|
end
|