-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.env.example
More file actions
79 lines (57 loc) · 3.94 KB
/
Copy path.env.example
File metadata and controls
79 lines (57 loc) · 3.94 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# ==============================================================================
# REMITLEND FRONTEND - ENVIRONMENT VARIABLES TEMPLATE
# ==============================================================================
# Copy this file to '.env.local' or '.env' for local development.
# Fill in values as appropriate for your local or production environment.
# ==============================================================================
# ── API & Deployment Config ──────────────────────────────────────────────────
# Purpose: The base URL of the RemitLend Express Backend API.
# Used by client pages and hooks (like useApi, useNotificationStream) to fetch off-chain details.
# Example: http://localhost:3001
NEXT_PUBLIC_API_URL=http://localhost:3001
# Purpose: The frontend public base URL, used to configure openGraph meta tags and site metadata.
# Example: http://localhost:3000
NEXT_PUBLIC_SITE_URL=http://localhost:3000
# ── Stellar & Soroban Config ─────────────────────────────────────────────────
# Purpose: The Stellar network the application interacts with.
# Example: TESTNET, PUBLIC (Mainnet), FUTURENET, STANDALONE
NEXT_PUBLIC_STELLAR_NETWORK=TESTNET
# Purpose: The RPC endpoint URL of the Soroban network.
# Example: https://soroban-testnet.stellar.org
NEXT_PUBLIC_STELLAR_RPC_URL=https://soroban-testnet.stellar.org
# Purpose: The network passphrase for transaction builders to sign transactions on the target network.
# Example: "Test SDF Network ; September 2015" (for Testnet) or "Public Global Stellar Network ; October 2015" (for Mainnet)
NEXT_PUBLIC_STELLAR_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
# Purpose: The base URL for the Stellar Expert block explorer (without trailing slash).
# Used to generate external links to check transactions or accounts.
# Example: https://stellar.expert/explorer/testnet
NEXT_PUBLIC_STELLAR_EXPLORER_URL=https://stellar.expert/explorer/testnet
# Purpose: The Horizon API URL to fetch account balances and information.
# Example: https://horizon-testnet.stellar.org
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org
# ── Smart Contract IDs ────────────────────────────────────────────────────────
# Purpose: The Soroban contract ID for the Loan Manager contract.
# Example: CC1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwx (leave blank if not deployed)
NEXT_PUBLIC_LOAN_MANAGER_CONTRACT_ID=
# Purpose: The Soroban contract ID for the overall Manager contract.
# Example: CC1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwx (leave blank if not deployed)
NEXT_PUBLIC_MANAGER_CONTRACT_ID=
# Purpose: The Soroban contract ID for the Remittance NFT contract.
# Example: CD1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwx (leave blank if not deployed)
NEXT_PUBLIC_NFT_CONTRACT_ID=
# ── Sentry Error Monitoring & Tracking ────────────────────────────────────────
# Purpose: Public Sentry DSN for client-side error reporting and performance tracking.
# Example: https://a1b2c3d4e5f6g7h8i9j0@o0.ingest.sentry.io/0
NEXT_PUBLIC_SENTRY_DSN=
# Purpose: Private Sentry DSN for server-side / Edge runtime error reporting.
# Example: https://a1b2c3d4e5f6g7h8i9j0@o0.ingest.sentry.io/0
SENTRY_DSN=
# Purpose: Sentry Organization slug/identifier used during build to upload source maps.
# Example: remitlend
SENTRY_ORG=
# Purpose: Sentry Project slug/identifier used during build to associate error reports.
# Example: remitlend-frontend
SENTRY_PROJECT=
# Purpose: Private Sentry authentication token allowing Sentry CLI to upload build source maps.
# Example: sntryu_1234567890abcdef...
SENTRY_AUTH_TOKEN=