2018-03-02 16:27:03 +01:00
|
|
|
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)
|
|
|
|
|
2015-09-01 14:17:12 +02:00
|
|
|
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}')]
|
2018-02-08 16:20:32 +01:00
|
|
|
config.i18n.available_locales = [:fr]
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2015-12-04 16:17:35 +01:00
|
|
|
config.autoload_paths += %W(#{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-05-17 13:24:58 +02:00
|
|
|
config.assets.precompile += %w(.woff mailjet.js)
|
2015-08-10 11:05:06 +02:00
|
|
|
|
2016-01-05 15:53:01 +01:00
|
|
|
if Rails.env.production?
|
2018-02-28 17:37:44 +01:00
|
|
|
URL = "https://www.demarches-simplifiees.fr/"
|
2016-01-05 15:53:01 +01:00
|
|
|
elsif Rails.env.staging?
|
2018-02-28 17:37:44 +01:00
|
|
|
URL = "https://dev.demarches-simplifiees.fr/"
|
2016-01-05 15:53:01 +01:00
|
|
|
else
|
|
|
|
URL = "http://localhost:3000/"
|
|
|
|
end
|
2017-10-03 16:19:25 +02:00
|
|
|
|
|
|
|
config.active_job.queue_adapter = :delayed_job
|
2017-10-16 12:10:21 +02:00
|
|
|
|
|
|
|
config.action_view.sanitized_allowed_tags = ActionView::Base.sanitized_allowed_tags + ['u']
|
2015-08-10 11:05:06 +02:00
|
|
|
end
|
|
|
|
end
|