-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 1.99 KB
/
Copy path.env.example
File metadata and controls
39 lines (32 loc) · 1.99 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
# ─── Stellar / Soroban ────────────────────────────────────────
STELLAR_NETWORK=testnet
SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
STELLAR_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
ORACLE_OPERATOR_SECRET=
# ─── Contract Addresses (populated by deploy.sh) ──────────────
INVOICE_REGISTRY_CONTRACT=
MARKETPLACE_CONTRACT=
ESCROW_CONTRACT=
LIQUIDITY_POOL_CONTRACT=
ORACLE_CONTRACT=
# ─── Database ─────────────────────────────────────────────────
DATABASE_URL=postgresql://factorchain:factorchain@localhost:5432/factorchain
# ─── Redis ────────────────────────────────────────────────────
REDIS_URL=redis://localhost:6379
# ─── IPFS / Pinata ────────────────────────────────────────────
PINATA_API_KEY=
PINATA_SECRET=
# ─── Auth ─────────────────────────────────────────────────────
JWT_SECRET=
JWT_EXPIRES_IN=86400
# ─── Email ────────────────────────────────────────────────────
RESEND_API_KEY=
EMAIL_FROM=notifications@factorchain.app
# ─── Frontend (Vite) ──────────────────────────────────────────
VITE_API_BASE_URL=http://localhost:3000/v1
VITE_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
VITE_NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
VITE_INVOICE_REGISTRY_CONTRACT=
VITE_MARKETPLACE_CONTRACT=
VITE_ESCROW_CONTRACT=
VITE_LIQUIDITY_POOL_CONTRACT=