-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for Sentry (#1352)
* chore: add sentry to package.json * chore: git ignore .sentryclirc * fix: add sentry config init * fix: add SENTRY_AUTH_TOKEN to GitHub CI environment * chore: add sentry placeholders to local.env.sample * fix: add auth token to lint task * fix: add environment to sentry
- Loading branch information
1 parent
2e2b06d
commit d5b2c53
Showing
8 changed files
with
322 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,6 @@ local.env | |
|
||
# generated | ||
src/terrasoApi/shared/graphqlSchema | ||
|
||
# Sentry Config File | ||
.sentryclirc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
REACT_APP_TERRASO_ENV=local | ||
ENV=development | ||
REACT_APP_TERRASO_API_URL=http://127.0.0.1:8000 | ||
REACT_APP_PLAUSIBLE_DOMAIN=app.local.terraso.org | ||
REACT_APP_SHARED_DATA_ACCEPTED_EXTENSIONS=csv,doc,docx,pdf,ppt,pptx,xlsx,xls | ||
REACT_APP_IMAGE_ACCEPTED_EXTENSIONS=jpeg,jpg | ||
REACT_APP_MAPBOX_ACCESS_TOKEN= | ||
SENTRY_AUTH_TOKEN=sntrys_eyxxxxxxxxxxx | ||
SENTRY_DSN=https://[email protected]/abcd |
Oops, something went wrong.