-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start - playground node * add sentry client config * add to ui-testing playground * add sentry release notification to release and snapshot actions * Add conditional step to create Sentry release
- Loading branch information
1 parent
79b0990
commit ee0666c
Showing
10 changed files
with
1,169 additions
and
18 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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import db from '@astrojs/db'; | ||
import node from '@astrojs/node'; | ||
import sentry from '@sentry/astro'; | ||
// import webvitals from '@astrojs/web-vitals'; | ||
import studioCMSBlog from '@studiocms/blog'; | ||
import devapps from '@studiocms/devapps'; | ||
|
@@ -13,6 +14,13 @@ export default defineConfig({ | |
output: 'server', | ||
adapter: node({ mode: 'standalone' }), | ||
integrations: [ | ||
sentry({ | ||
dsn: 'https://[email protected]/2', | ||
sourceMapsUploadOptions: { | ||
project: 'studiocms-playground', | ||
authToken: process.env.SENTRY_AUTH_TOKEN, | ||
}, | ||
}), | ||
db(), | ||
// webvitals(), | ||
studioCMS(), // StudioCMS Integration options can be found in `studiocms.config.mjs` | ||
|
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import * as Sentry from '@sentry/astro'; | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/2', | ||
integrations: [ | ||
Sentry.feedbackIntegration({ | ||
// Additional SDK configuration goes in here, for example: | ||
colorScheme: 'system', | ||
isNameRequired: true, | ||
}), | ||
], | ||
}); |
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,7 +1,17 @@ | ||
import sentry from '@sentry/astro'; | ||
import { defineConfig } from 'astro/config'; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
site: 'https://ui-testing.studiocms.xyz', | ||
output: 'static', | ||
integrations: [ | ||
sentry({ | ||
dsn: 'https://[email protected]/3', | ||
sourceMapsUploadOptions: { | ||
project: 'studiocms-ui-testing', | ||
authToken: process.env.SENTRY_AUTH_TOKEN, | ||
}, | ||
}), | ||
], | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import * as Sentry from '@sentry/astro'; | ||
|
||
Sentry.init({ | ||
dsn: 'https://[email protected]/3', | ||
integrations: [ | ||
Sentry.feedbackIntegration({ | ||
// Additional SDK configuration goes in here, for example: | ||
colorScheme: 'system', | ||
isNameRequired: true, | ||
}), | ||
], | ||
}); |
Oops, something went wrong.