From d750addb65135360476e490a3e8677545b68b4e8 Mon Sep 17 00:00:00 2001 From: Adam Jazairi Date: Mon, 3 Feb 2020 16:28:58 -0500 Subject: [PATCH] Configure Sentry --- Gemfile | 1 + Gemfile.lock | 3 +++ app.json | 3 +++ 3 files changed, 7 insertions(+) diff --git a/Gemfile b/Gemfile index 1ac53bd3..a6c12e05 100644 --- a/Gemfile +++ b/Gemfile @@ -19,6 +19,7 @@ gem 'rack-cors' gem 'rails', '~> 5.2' gem 'redis' gem 'sass-rails' +gem 'sentry-raven' gem 'uglifier' group :production do diff --git a/Gemfile.lock b/Gemfile.lock index f90fe914..985053af 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -243,6 +243,8 @@ GEM selenium-webdriver (3.142.7) childprocess (>= 0.5, < 4.0) rubyzip (>= 1.2.2) + sentry-raven (2.13.0) + faraday (>= 0.7.6, < 1.0) simplecov (0.16.1) docile (~> 1.1) json (>= 1.8, < 3) @@ -319,6 +321,7 @@ DEPENDENCIES rubocop-rails sass-rails selenium-webdriver + sentry-raven sqlite3 timecop uglifier diff --git a/app.json b/app.json index 3d14fabf..e083b170 100644 --- a/app.json +++ b/app.json @@ -54,6 +54,9 @@ "SECRET_KEY_BASE": { "required": true }, + "SENTRY_DSN": { + "required": true + }, "SMTP_ADDRESS": { "required": true },