-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.26 KB
/
.env.example
File metadata and controls
34 lines (28 loc) · 1.26 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
# Pinata API Keys
# Get these from https://app.pinata.cloud/keys
PINATA_API_KEY=your_pinata_api_key_here
PINATA_SECRET_API_KEY=your_pinata_secret_api_key_here
# Backend API base URL (absolute URL)
# Used by the frontend and Next.js route handlers to proxy /health and /v1/risk.
# Examples:
# NEXT_PUBLIC_API_URL=http://localhost:8080
# NEXT_PUBLIC_API_URL=https://api-staging.example.com
NEXT_PUBLIC_API_URL=
# WebSocket base URL (absolute URL). If unset, derived from NEXT_PUBLIC_API_URL.
# Examples:
# NEXT_PUBLIC_WS_URL=ws://localhost:8081
# NEXT_PUBLIC_WS_URL=wss://api-staging.example.com
NEXT_PUBLIC_WS_URL=
# Optional: CORS allow-list for Next.js route handlers (comma-separated origins)
# If unset, localhost origins are allowed during development.
CORS_ALLOW_ORIGINS=
# Sentry DSN for error tracking
# Get this from your Sentry project settings
NEXT_PUBLIC_SENTRY_DSN=your_sentry_dsn_here
# Soroban / Stellar Smart Contracts
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
NEXT_PUBLIC_STELLAR_NETWORK_PASSPHRASE=Test SDF Network ; September 2015
NEXT_PUBLIC_INVOICE_CONTRACT_ID=your_deployed_invoice_contract_id_here
# Stellar Network Configuration
# Set to "TESTNET" or "PUBLIC" to specify which network the app should use
NEXT_PUBLIC_STELLAR_NETWORK=TESTNET