Sentry

Kickstart has preconfigured Sentry as the exceptional logging provider.

Enable Sentry for production

Head over to Sentry for setup your sentry account.

Record down your sentry dsn

Configure sentry dsn into the api/.env

SENTRY_DSN=YOUR_SENTRY_DSN

Configure sentry dsn into the web/.env.local

NEXT_PUBLIC_SENTRY=YOUR_SENTRY_DSN

Modify web/kickstart.config.ts

export const config = {
  ...
  enableSentry: true
  ...
}