demarches-normaliennes/config/application.rb

39 lines
1.6 KiB
Ruby
Raw Normal View History

require File.expand_path('boot', __dir__)
2015-08-10 11:05:06 +02:00
require 'rails/all'
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
Dotenv::Railtie.load
module TPS
2015-08-10 11:05:06 +02:00
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.
# 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)'
# 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]
2015-08-21 11:37:13 +02:00
config.i18n.default_locale = :fr
config.i18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
config.i18n.available_locales = [:fr]
2015-08-10 11:05:06 +02:00
2018-10-01 13:55:12 +02:00
config.autoload_paths += ["#{config.root}/lib", "#{config.root}/app/validators", "#{config.root}/app/facades"]
2015-08-10 11:05:06 +02:00
config.assets.paths << Rails.root.join('app', 'assets', 'javascript')
2017-04-04 14:37:50 +02:00
config.assets.paths << Rails.root.join('app', 'assets', 'fonts')
2018-10-01 13:55:12 +02:00
config.assets.precompile += ['.woff']
2015-08-10 11:05:06 +02:00
2018-08-21 15:42:06 +02:00
URL = ENV['APP_HOST'] || "http://localhost:3000/"
2017-10-03 16:19:25 +02:00
config.active_job.queue_adapter = :delayed_job
config.action_view.sanitized_allowed_tags = ActionView::Base.sanitized_allowed_tags + ['u']
2015-08-10 11:05:06 +02:00
end
end