-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (28 loc) · 1.31 KB
/
Copy path.env.example
File metadata and controls
29 lines (28 loc) · 1.31 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
# OpenLedger — Environment Variables
#
# OpenLedger is a local-first PWA. No account, backend, or cloud service
# is required to use the app. Supabase variables are only needed when
# enabling optional auth + cloud backup.
#
# Copy this file to .env.local (NOT .env — Next.js treats .env as checked-in).
# NEVER commit the real secrets file.
#
# === Supabase (optional — for auth + cloud backup) ===
# Project: Elora (shared project — all OpenLedger tables use openledger_ prefix)
# Create your own Supabase project or use a shared one. Tables are created
# via migrations in supabase/migrations/.
# NEXT_PUBLIC_SUPABASE_URL=https://qoxmibmbyjmkntzrckyr.supabase.co
# NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=sb_publishable_xxxxx
#
# Server-side only — never expose to the client:
# SUPABASE_SERVICE_ROLE_KEY=your-service-role-key
# === Analytics & Crash Reporting (disabled by default) ===
# Set to "true" to enable privacy-safe page views and error logging.
# Only takes effect when NODE_ENV=production.
# No PII is collected. Financial data is never transmitted.
# NEXT_PUBLIC_ENABLE_ANALYTICS=false
#
# === Sentry Crash Reporting (optional) ===
# Create a Sentry project for OpenLedger and set the DSN here.
# Sentry is only initialized when NEXT_PUBLIC_SENTRY_DSN is set.
# NEXT_PUBLIC_SENTRY_DSN=https://example@sentry.io/123