forked from Carbon-Ledger-stellar/carbonledger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
66 lines (54 loc) · 3.82 KB
/
Copy path.env.example
File metadata and controls
66 lines (54 loc) · 3.82 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
# ── Stellar Network ───────────────────────────────────────────────────────────
STELLAR_NETWORK=testnet
STELLAR_RPC_URL=https://soroban-testnet.stellar.org
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
NETWORK_PASSPHRASE="Test SDF Network ; September 2015"
# ── Contract Addresses (fill after deployment) ────────────────────────────────
CARBON_REGISTRY_CONTRACT_ID=
CARBON_CREDIT_CONTRACT_ID=
CARBON_MARKETPLACE_CONTRACT_ID=
CARBON_ORACLE_CONTRACT_ID=
USDC_CONTRACT_ID=
# ── Oracle Keypair ────────────────────────────────────────────────────────────
ORACLE_SECRET_KEY=
ORACLE_PUBLIC_KEY=
# ── Admin Keypair ─────────────────────────────────────────────────────────────
ADMIN_SECRET_KEY=
ADMIN_PUBLIC_KEY=
# ── Database ──────────────────────────────────────────────────────────────────
DATABASE_URL=postgresql://carbonledger:changeme@localhost:5432/carbonledger
POSTGRES_PASSWORD=changeme
# ── Auth ──────────────────────────────────────────────────────────────────────
JWT_SECRET=change-this-to-a-long-random-secret-in-production
JWT_EXPIRY=7d
# ── IPFS / Pinata ─────────────────────────────────────────────────────────────
IPFS_API_URL=https://api.pinata.cloud
IPFS_API_KEY=
IPFS_SECRET_KEY=
# ── Satellite Data ────────────────────────────────────────────────────────────
GOOGLE_EARTH_ENGINE_KEY=
PLANET_LABS_API_KEY=
GEE_WEBHOOK_SECRET=
# ── Price Feeds ───────────────────────────────────────────────────────────────
XPANSIV_API_KEY=
TOUCAN_API_KEY=
# ── Verifier APIs ─────────────────────────────────────────────────────────────
GOLD_STANDARD_API_URL=
GOLD_STANDARD_API_KEY=
VERRA_VCS_API_URL=
VERRA_VCS_API_KEY=
# ── Alerts ────────────────────────────────────────────────────────────────────
ADMIN_ALERT_WEBHOOK=
# ── Frontend (Next.js public vars) ───────────────────────────────────────────
NEXT_PUBLIC_STELLAR_NETWORK=testnet
NEXT_PUBLIC_HORIZON_URL=https://horizon-testnet.stellar.org
NEXT_PUBLIC_SOROBAN_RPC_URL=https://soroban-testnet.stellar.org
NEXT_PUBLIC_API_URL=http://localhost:3001/api/v1
NEXT_PUBLIC_REGISTRY_CONTRACT=
NEXT_PUBLIC_CREDIT_CONTRACT=
NEXT_PUBLIC_MARKETPLACE_CONTRACT=
NEXT_PUBLIC_ORACLE_CONTRACT=
NEXT_PUBLIC_USDC_CONTRACT=
# ── Backend ───────────────────────────────────────────────────────────────────
PORT=3001
FRONTEND_URL=http://localhost:3000