Skip to content

Commit

Permalink
Adds sentry to env variables (#3312)
Browse files Browse the repository at this point in the history
* Added sentry

* Updated newrelic
  • Loading branch information
hkirat authored Mar 12, 2023
1 parent fc3e59e commit df51836
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/backend-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
printf 'HELIUS_API_KEY=%s\n' '${{secrets.HELIUS_API_KEY}}' >> .env
printf 'VAPID_PRIVATE_KEY=%s\n' '${{secrets.VAPID_PRIVATE_KEY}}' >> .env
printf 'VAPID_PUBLIC_KEY=%s\n' '${{secrets.VAPID_PUBLIC_KEY}}' >> .env
printf 'SENTRY_DSN=%s\n' '${{secrets.SENTRY_DSN}}' >> .env
cd ../../..
- name: docker login
Expand Down
1 change: 0 additions & 1 deletion backend/native/notifications-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
"dotenv": "^16.0.3",
"esbuild": "^0.15.13",
"express": "^4.18.2",
"newrelic": "^9.11.0",
"redis": "^4.5.1",
"uuid": "^9.0.0",
"web-push": "^3.5.0"
Expand Down
2 changes: 0 additions & 2 deletions backend/native/notifications-worker/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
require("newrelic");

import cluster from "cluster";
import express from "express";
import os from "os";
Expand Down

1 comment on commit df51836

@vercel
Copy link

@vercel vercel bot commented on df51836 Mar 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.