-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example.dev
More file actions
62 lines (50 loc) · 1.63 KB
/
Copy path.env.example.dev
File metadata and controls
62 lines (50 loc) · 1.63 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
# =============================================================================
# Development Environment (example)
# Copy to .env.local at repo root. Loaded by `pnpm dev`.
# =============================================================================
NODE_ENV=development
ENABLED_CHAINS=xmr,firo
# --- Web ---
VITE_API_URL=http://localhost:3000/v1
# --- CORS ---
ALLOWED_ORIGINS=http://localhost:5173 # comma-separated, no trailing slash
# --- Shared auth ---
API_KEY=api_key
# Optional: set a fixed code for demo-only admin login/TOTP bypass
DEMO_ADMIN_TOTP=123456
WEBHOOK_SIGNING_SECRET=webhook_secret
# Where the auto-generated JWT signing secret is persisted. Defaults to a
# container path (/app/data/jwt/secret) that doesn't exist on a bare host —
# override for `pnpm dev` outside Docker.
JWT_SECRET_PATH=./data/jwt/secret
# --- Postgres (API connection) ---
DATABASE_URL=postgresql://postgres:password@localhost:5432/mint_dev
# --- Postgres (compose-only: unused in pnpm dev) ---
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
POSTGRES_DB=mint_dev
# --- Monero View Only ---
MONERO_NETWORK=mainnet
MONERO_DAEMON_URI=http://localhost:18081
MONERO_DAEMON_USER=
MONERO_DAEMON_PASSWORD=
MONERO_RPC_LOGIN=
MONERO_WALLET_PATH=./data/wallet/merchant
MONERO_VIEW_KEY=
MONERO_PRIMARY_ADDRESS=
MONERO_RESTORE_HEIGHT=2142513
MONERO_PREWARM_SYNC=false
# --- Firo Node RPC ---
FIRO_RPC_HOST=localhost
FIRO_RPC_PORT=8888
FIRO_RPC_USER=
FIRO_RPC_PASS=
FIRO_RPC_PROTOCOL=http
# --- PIVX Node RPC ---
PIVX_RPC_HOST=localhost
PIVX_RPC_PORT=51473
PIVX_RPC_USER=
PIVX_RPC_PASS=
PIVX_RPC_PROTOCOL=http
# --- Optional: CoinMarketCap Pricing ---
CMC_API_KEY=