2018-10-17 09:38:04 -05:00
|
|
|
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.
|
2014-06-19 12:33:38 -04:00
|
|
|
Bundler.require(*Rails.groups)
|
2012-04-05 10:43:56 +02:00
|
|
|
|
2012-04-05 22:19:47 +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.
|
2018-11-17 12:37:03 -06:00
|
|
|
# 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)
|
2018-11-22 23:50:56 -06: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
|
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
# 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']
|
2022-04-29 02:43:08 +02:00
|
|
|
# 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
|