Files
once-campfire/config/initializers/sentry.rb
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

9 lines
278 B
Ruby

if Rails.env.production? && ENV["SKIP_TELEMETRY"].blank?
Sentry.init do |config|
config.dsn = ENV["SENTRY_DSN"]
config.breadcrumbs_logger = [ :active_support_logger, :http_logger ]
config.send_default_pii = false
config.release = ENV["GIT_REVISION"]
end
end