39 lines
1.4 KiB
Ruby
39 lines
1.4 KiB
Ruby
require_relative 'boot'
|
|
|
|
require 'rails/all'
|
|
|
|
# Require the gems listed in Gemfile, including any gems
|
|
# you've limited to :test, :development, or :production.
|
|
Bundler.require(*Rails.groups)
|
|
|
|
require 'telegraf/rails'
|
|
|
|
module CodeOcean
|
|
class Application < Rails::Application
|
|
# Initialize configuration defaults
|
|
config.load_defaults 5.2
|
|
|
|
# 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.
|
|
|
|
# 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 = 'UTC'
|
|
|
|
# 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
|
|
config.i18n.available_locales = [:de, :en]
|
|
|
|
config.autoload_paths << Rails.root.join('lib')
|
|
config.eager_load_paths << Rails.root.join('lib')
|
|
config.assets.precompile += %w( markdown-buttons.png )
|
|
|
|
config.action_cable.mount_path = '/cable'
|
|
|
|
config.telegraf.tags = { application: 'codeocean' }
|
|
end
|
|
end
|