forgeplus/config/application.rb

50 lines
1.6 KiB
Ruby
Raw Normal View History

2020-03-09 00:40:16 +08:00
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)
module Educoderplus
class Application < Rails::Application
# Initialize configuration defaults for originally generated Rails version.
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.
#
#
# config.educoder = config_for(:configuration)
2020-12-03 15:24:40 +08:00
# Custom directories with classes and modules you want to be autoloadable.
2020-03-09 00:40:16 +08:00
config.active_record.default_timezone = :utc
config.time_zone = 'Beijing'
# I18n
config.i18n.default_locale = 'zh-CN'
config.i18n.load_path += Dir[Rails.root.join('config/locales', '**', '*.yml').to_s]
# job
config.active_job.queue_adapter = :sidekiq
2020-07-02 15:49:22 +08:00
# disable actioncable development nend true
# config.action_cable.disable_request_forgery_protection = true
2020-03-09 00:40:16 +08:00
config.middleware.use OmniAuth::Builder do
provider :cas, url: 'https://urp.tfswufe.edu.cn/cas'
end
config.middleware.insert_before 0, Rack::Cors do
allow do
origins '*'
# location of your api
2021-01-27 17:22:16 +08:00
resource '/*', :headers => :any, :methods => [:get, :post, :delete, :options, :put, :patch]
2020-03-09 00:40:16 +08:00
end
end
end
end