OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/config/initializers/airbrake.rb

9 lines
280 B

if ENV['AIRBRAKE_API_KEY']
Airbrake.configure do |config|
config.api_key = ENV.fetch('AIRBRAKE_API_KEY')
config.host = ENV['AIRBRAKE_HOST'] if ENV['AIRBRAKE_HOST']
config.port = ENV.fetch('AIRBRAKE_PORT', 443)
config.secure = config.port == 443
end
end