-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
46 lines (38 loc) · 1.89 KB
/
Copy path.env.local.example
File metadata and controls
46 lines (38 loc) · 1.89 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
35
36
37
38
39
40
41
42
43
44
45
46
# =============================================================================
# Escritos da Geo — Environment Variables
# =============================================================================
# Copy this file to `.env.local` and fill in real values.
# NEVER commit `.env.local` (already in .gitignore).
# =============================================================================
# -----------------------------------------------------------------------------
# Supabase (https://supabase.com/dashboard)
# -----------------------------------------------------------------------------
# Public URL of your Supabase project (safe to expose to client)
NEXT_PUBLIC_SUPABASE_URL=
# Anon/Public key — used by browser & server (RLS enforces security)
NEXT_PUBLIC_SUPABASE_ANON_KEY=
# Service role key — SERVER ONLY, NEVER expose to client
# Used in admin operations like deleteAccount + handle_new_user trigger
SUPABASE_SERVICE_ROLE_KEY=
# -----------------------------------------------------------------------------
# Application
# -----------------------------------------------------------------------------
# Allowlist for MVP single-user authentication
# Only this email receives magic links; all others get a generic success message
ALLOWED_EMAILS=
# -----------------------------------------------------------------------------
# Sentry (https://sentry.io)
# -----------------------------------------------------------------------------
# Server-side DSN for capturing exceptions
SENTRY_DSN=
# Client-side DSN (same value typically)
NEXT_PUBLIC_SENTRY_DSN=
# Optional — for uploading source maps via CI
SENTRY_AUTH_TOKEN=
SENTRY_ORG=
SENTRY_PROJECT=
# -----------------------------------------------------------------------------
# Vercel-managed (auto-set in production, leave blank locally)
# -----------------------------------------------------------------------------
# VERCEL_URL=
# VERCEL_ENV=