-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy path.env.example
More file actions
31 lines (31 loc) · 1.61 KB
/
Copy path.env.example
File metadata and controls
31 lines (31 loc) · 1.61 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
# Created by Vercel CLI
GOOGLE_CLIENT_ID=""
GOOGLE_CLIENT_SECRET="your_google_client_secret"
# Set a strong secret per environment (e.g. openssl rand -base64 32). Do not commit real values.
NEXTAUTH_SECRET=""
NEXTAUTH_URL="http://localhost:3000"
# In production set to your production API base (e.g. https://api.boundlessfi.xyz). Do not rely on staging fallback.
NEXT_PUBLIC_API_URL="https://stage-api.boundlessfi.xyz/api"
NEXT_PUBLIC_APP_DESCRIPTION="Stellar-based application"
NEXT_PUBLIC_APP_ICON="/logo.svg"
NEXT_PUBLIC_APP_NAME="Boundless"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
# Required in production for realtime/socket. No localhost fallback in production.
NEXT_PUBLIC_BETTER_AUTH_URL="https://stage-api.boundlessfi.xyz"
# Required for escrow in production. Set to your platform wallet address.
NEXT_PUBLIC_BOUNDLESS_PLATFORM_ADDRESS=""
NEXT_PUBLIC_DEBUG_MODE="false"
NEXT_PUBLIC_ENABLE_MULTI_WALLET="true"
NEXT_PUBLIC_ENABLE_NETWORK_SWITCHING="true"
NEXT_PUBLIC_ENABLE_WALLET_CONNECT="true"
NEXT_PUBLIC_GOOGLE_CLIENT_ID=""
NEXT_PUBLIC_HORIZON_PUBLIC_URL="https://horizon.stellar.org"
NEXT_PUBLIC_HORIZON_TESTNET_URL="https://horizon-testnet.stellar.org"
NEXT_PUBLIC_STELLAR_NETWORK="testnet"
# Whitelisted USDC SAC (Soroban contract C-address) used as the escrow tokenAddress.
# Must match the boundless-events contract's whitelisted token (see backend admin runbook).
NEXT_PUBLIC_USDC_TOKEN_CONTRACT_TESTNET="CBIELTK6YBZJU5UP2WWQEUCYKLPU6AUNZ2BQ4WWFEIE3USCIHMXQDAMA"
NEXT_PUBLIC_USDC_TOKEN_CONTRACT_PUBLIC=""
NEXT_PUBLIC_TRUSTLESS_WORK_API_KEY=""
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID="your_wallet_connect_project_id"
NODE_ENV="dev"