mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 21:24:54 +08:00
17 lines
633 B
Ruby
17 lines
633 B
Ruby
# frozen_string_literal: true
|
|
|
|
Rails.application.configure do
|
|
config.x.core_api_sign_alg = ENV['CORE_API_SIGN_ALG'] || 'HS256'
|
|
|
|
config.x.core_api_token_ttl = ENV['CORE_API_TOKEN_TTL'] ? ENV['CORE_API_TOKEN_TTL'].to_i.seconds : 30.minutes
|
|
|
|
config.x.core_api_token_iss = ENV['CORE_API_TOKEN_ISS'] || 'SciNote'
|
|
|
|
config.x.core_api_rate_limit = ENV['CORE_API_RATE_LIMIT'] ? ENV['CORE_API_RATE_LIMIT'].to_i : 1000
|
|
|
|
config.x.core_api_v1_enabled = ENV['CORE_API_V1_ENABLED'] || false
|
|
|
|
config.x.core_api_v2_enabled = ENV['CORE_API_V2_ENABLED'] || false
|
|
|
|
config.x.core_api_key_enabled = ENV['CORE_API_KEY_ENABLED'] == 'true'
|
|
end
|