-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
27 lines (21 loc) · 918 Bytes
/
.env.local.example
File metadata and controls
27 lines (21 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Local Development Sentry Configuration (Optional)
# Copy this to .env.local to test Sentry integration in development mode
# Single test Sentry project for all components
# Example: SENTRY_DSN=https://abc123@o123456.ingest.sentry.io/7654321
SENTRY_DSN=
# Sentry Auth Token (optional for local testing)
# Only needed if you want to test source map uploads locally
# Generate at: https://sentry.io/settings/account/api/auth-tokens/
# Required scopes: project:releases, project:write
SENTRY_AUTH_TOKEN=
# Organization and project settings
SENTRY_ORG=query-pilot
SENTRY_PROJECT=query-pilot
# Notes:
# - Sentry is DISABLED by default in development (even with DSN set)
# - To test Sentry locally:
# 1. Add your test DSN above
# 2. In the app: Preferences → Telemetry → Enable crash reporting
# 3. Restart the app
# 4. Trigger a test error
# - See .github/SENTRY_QUICKSTART.md for production setup guide