1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 require File.expand_path('../boot', __FILE__)
9 Bundler.require(:default, Rails.env)
11 module ArvadosWorkbench
12 class Application < Rails::Application
13 # Settings in config/environments/* take precedence over those specified here.
14 # Application configuration should go into files in config/initializers
15 # -- all .rb files in that directory are automatically loaded.
17 # Custom directories with classes and modules you want to be autoloadable.
18 # config.autoload_paths += %W(#{config.root}/extras)
19 config.autoload_paths += %W(#{config.root}/lib)
21 # Only load the plugins named here, in the order given (default is alphabetical).
22 # :all can be used as a placeholder for all plugins not explicitly named.
23 # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
25 # Activate observers that should always be running.
26 # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
28 # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
29 # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
30 # config.time_zone = 'Central Time (US & Canada)'
32 # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
33 # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
34 # config.i18n.default_locale = :de
36 # Configure the default encoding used in templates for Ruby 1.9.
37 config.encoding = "utf-8"
39 # Configure sensitive parameters which will be filtered from the log file.
40 config.filter_parameters += [:password]
42 # Enable escaping HTML in JSON.
43 config.active_support.escape_html_entities_in_json = true
45 # Use SQL instead of Active Record's schema dumper when creating the database.
46 # This is necessary if your schema can't be completely dumped by the schema dumper,
47 # like if you have constraints or database-specific column types
48 # config.active_record.schema_format = :sql
50 # Enable the asset pipeline
51 config.assets.enabled = true
53 # Version of your assets, change this if you want to expire all your assets
54 config.assets.version = '1.0'
58 require File.expand_path('../load_config', __FILE__)