-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (30 loc) · 1.44 KB
/
.env.example
File metadata and controls
34 lines (30 loc) · 1.44 KB
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
28
29
30
31
32
33
34
# Environment Variables Example
# Copy this file to .env.local and fill in your actual values
# Radar.io API Key (required for route generation and autocomplete)
# Get your free API key at: https://radar.com/signup
NEXT_PUBLIC_RADAR_LIVE_PK=prj_live_pk_...
NEXT_PUBLIC_RADAR_TEST_PK=prj_test_pk_...
# ============================================
# Upstash Redis (for route caching and rate limiting)
# ============================================
# Add Upstash via Vercel Marketplace: https://vercel.com/marketplace
# These are automatically injected when you link Upstash to your project.
# The app works without these (caching and rate limiting will be disabled).
#
# Vercel KV naming (if you added as "KV" type):
KV_REST_API_URL=https://your-redis.upstash.io
KV_REST_API_TOKEN=your-upstash-token
#
# OR Upstash native naming (if you added as "Redis" type):
# UPSTASH_REDIS_REST_URL=https://your-redis.upstash.io
# UPSTASH_REDIS_REST_TOKEN=your-upstash-token
# ============================================
# Sentry (for error tracking and monitoring)
# ============================================
# Get your DSN at: https://sentry.io → Create Project → Next.js
# The app works without these (error tracking will be disabled).
NEXT_PUBLIC_SENTRY_DSN=https://your-public-key@sentry.io/your-project-id
# For source map uploads during build (optional but recommended)
SENTRY_AUTH_TOKEN=your-sentry-auth-token
SENTRY_ORG=your-sentry-org
SENTRY_PROJECT=your-sentry-project