forked from Pi-Defi-world/acbu-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (28 loc) · 1.2 KB
/
Copy path.env.example
File metadata and controls
33 lines (28 loc) · 1.2 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
# Frontend environment variables for ACBU
# Copy this file to `.env.local` and fill in the values for your environment.
# Required for API requests from the browser.
NEXT_PUBLIC_API_BASE_URL=https://api.example.com/api/v1
# Legacy alias supported by the app if API_BASE_URL is not set.
# NEXT_PUBLIC_API_URL=https://api.example.com/api/v1
# Optional client-side settings.
NEXT_PUBLIC_API_TIMEOUT=30000
NEXT_PUBLIC_BILLS_ENABLED=false
NEXT_PUBLIC_SUPPORT_INTAKE_URL=
NEXT_PUBLIC_STELLAR_HORIZON_URL=https://horizon.stellar.org
NEXT_PUBLIC_SOROBAN_RPC_URL=
NEXT_PUBLIC_DEMO_FIAT_ISSUER=
NEXT_PUBLIC_ACBU_ASSET_CODE=ACBU
NEXT_PUBLIC_ACBU_ASSET_ISSUER=
NEXT_PUBLIC_DEBUG=false
# Server-side support forwarding used by `app/api/support/route.ts`.
# Leave empty unless you have a support intake endpoint configured.
SUPPORT_INTAKE_URL=
# Source map upload to error tracking service (Sentry).
# Required for production builds to upload .map files and then strip them.
# Generate an auth token at https://<your-sentry-host>/settings/auth-tokens/
SENTRY_AUTH_TOKEN=
SENTRY_ORG=
SENTRY_PROJECT=
# Optional: override the release name (defaults to VERCEL_GIT_COMMIT_SHA).
# SENTRY_RELEASE=
# Never prefix secrets with NEXT_PUBLIC_.