tracks/config/application.rb

42 lines
1.8 KiB
Ruby
Raw Normal View History

require_relative 'boot'
2012-04-05 10:43:56 +02:00
require 'rails/all'
2013-05-11 23:12:20 +02:00
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
2012-04-05 10:43:56 +02:00
require 'yaml'
SITE_CONFIG = YAML.load_file(File.join(File.dirname(__FILE__), 'site.yml'))
2012-04-05 10:43:56 +02:00
module Tracksapp
class Application < Rails::Application
2018-11-11 11:40:22 -06:00
# Initialize configuration defaults for originally generated Rails version.
config.load_defaults 5.1
2012-04-05 10:43:56 +02: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.
2012-04-05 10:43:56 +02:00
# Custom directories with classes and modules you want to be autoloadable.
# config.autoload_paths += %W(#{config.root}/extras)
2025-06-28 16:25:52 +03:00
# config.autoload_paths += %W(#{config.root}/lib)
config.eager_load_paths += %W(#{config.root}/lib)
2012-04-05 10:43:56 +02:00
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
# config.time_zone = 'Central Time (US & Canada)'
2014-12-30 22:56:19 +00:00
config.time_zone = SITE_CONFIG['time_zone']
2012-04-05 10:43:56 +02:00
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
# config.i18n.default_locale = :de
# configure Tracks to handle deployment in a subdir
2014-08-13 18:12:47 +02:00
config.relative_url_root = SITE_CONFIG['subdir'] if SITE_CONFIG['subdir']
# or deployment behind a proxy
config.action_controller.default_url_options = SITE_CONFIG['default_url_options'] if SITE_CONFIG['default_url_options']
2012-04-05 10:43:56 +02:00
end
end