Edit Readme & Clean up anything left over from the already outdated template I made

This commit is contained in:
2025-06-19 13:48:13 -05:00
parent 301a9acec0
commit 4a9c1a7fec
9 changed files with 285 additions and 113 deletions

View File

@ -1,15 +1,9 @@
// This file configures the initialization of Sentry on the server.
// The config you add here will be used whenever the server handles a request.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from '@sentry/nextjs';
import './src/env.js';
Sentry.init({
dsn: 'https://0468176d5291bc2b914261147bfef117@sentry.gbrown.org/6',
// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
tracesSampleRate: 1, // Define how likely traces are sampled or use tracesSampler for more control.
debug: false, // Print useful debugging info while setting up Sentry.
});