mirror of
https://github.com/internetee/registry.git
synced 2025-08-03 16:32:04 +02:00
8 lines
281 B
Ruby
8 lines
281 B
Ruby
Airbrake.configure do |config|
|
|
config.host = ENV['airbrake_host']
|
|
config.project_id = ENV['airbrake_project_id']
|
|
config.project_key = ENV['airbrake_project_key']
|
|
|
|
config.environment = ENV['airbrake_env'] || Rails.env
|
|
config.ignore_environments = %w(development test)
|
|
end
|