-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 838 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (22 loc) · 838 Bytes
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
# Database
DATABASE_URL="postgresql://..." # NeonDB pooled URL
DIRECT_URL="postgresql://..." # NeonDB direct URL (migrations only)
# Redis
REDIS_URL="redis://localhost:6379"
# Stellar
STELLAR_NETWORK="testnet" # or "mainnet"
STELLAR_HORIZON_URL="https://horizon-testnet.stellar.org"
STELLAR_RPC_URL="https://soroban-testnet.stellar.org"
STELLAR_RECIPIENT_SECRET="S..." # Provider/platform wallet secret
STELLAR_RECIPIENT_PUBLIC="G..." # Provider/platform wallet address
# MPP
MPP_COMMITMENT_SECRET="..." # 64-char hex ed25519 seed
# Contracts (after Phase 2 deployment)
CONTRACT_MARKETPLACE=""
CONTRACT_CONFIDENTIAL_WRAPPER=""
CONTRACT_SESSION_VAULT=""
# App
NEXT_PUBLIC_APP_URL="http://localhost:3000"
API_URL="http://localhost:4000"
NEXT_PUBLIC_STELLAR_NETWORK="testnet"
JWT_SECRET="your-secret-here"