مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2026-01-22 23:48:46 +00:00
15 أسطر
388 B
Ruby
15 أسطر
388 B
Ruby
require "postal/config"
|
|
|
|
if Postal.config.general&.exception_url
|
|
require "raven"
|
|
Raven.configure do |config|
|
|
config.dsn = Postal.config.general.exception_url
|
|
config.environments = ["production"]
|
|
if ENV["DEV_EXCEPTIONS"]
|
|
config.environments << "development"
|
|
end
|
|
config.silence_ready = true
|
|
config.tags = { process: ENV.fetch("PROC_NAME", nil) }
|
|
end
|
|
end
|