mirror of https://github.com/docusealco/docuseal
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.
12 lines
412 B
12 lines
412 B
# frozen_string_literal: true
|
|
|
|
unless ENV['DOCKER_BUILD'] || ENV['CI_BUILD']
|
|
Airbrake.configure do |config|
|
|
config.project_key = ENV['AIRBRAKE_KEY'] # rubocop:disable Style/FetchEnvVar
|
|
config.project_id = ENV['AIRBRAKE_ID'] # rubocop:disable Style/FetchEnvVar
|
|
config.environment = Rails.env
|
|
config.ignore_environments = %w[development test]
|
|
config.root_directory = '/var/cpd/app'
|
|
end
|
|
end
|