Skip to content

Commit 38e37fb

Browse files
committed
docs: Clean .env.example with proper placeholders
1 parent 80671eb commit 38e37fb

1 file changed

Lines changed: 19 additions & 18 deletions

File tree

.env.example

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1-
# RTMPayServer Environment Configuration
2-
# Copy this file to .env and fill in your values
1+
# ============================================================
2+
# RTMPayServer — Environment Configuration
3+
# Copy this file: cp .env.example .env
4+
# Then edit with your values before running docker compose up
5+
# ============================================================
36

4-
# === RAPTOREUM NODE ===
7+
# ── Raptoreum Node RPC ─────────────────────────────────────
58
RTM_RPC_USER=rtmrpc
6-
RTM_RPC_PASSWORD=changeme_strong_password
7-
RTM_RPC_PORT=9998
9+
RTM_RPC_PASSWORD=change_me_strong_password_1
10+
RTM_P2P_PORT=10226
811

9-
# === BITCOIN NODE ===
12+
# ── Bitcoin Node RPC ───────────────────────────────────────
1013
BTC_RPC_USER=btcrpc
11-
BTC_RPC_PASSWORD=changeme_strong_password
14+
BTC_RPC_PASSWORD=change_me_strong_password_2
1215
BTC_NETWORK=mainnet
1316
# Options: mainnet | testnet | regtest
1417

15-
# === BTCPAYSERVER ===
16-
BTCPAY_HOST=rtmpay.yourdomain.com
17-
BTCPAY_ROOTPATH=/
18-
NBITCOIN_NETWORK=mainnet
19-
20-
# === POSTGRES ===
21-
POSTGRES_HOST=postgres
22-
POSTGRES_DB=btcpayserver
18+
# ── PostgreSQL ─────────────────────────────────────────────
2319
POSTGRES_USER=btcpay
24-
POSTGRES_PASSWORD=changeme_strong_password
20+
POSTGRES_PASSWORD=change_me_strong_password_3
21+
22+
# ── BTCPayServer ───────────────────────────────────────────
23+
# Your domain or IP address (no http://, no trailing slash)
24+
BTCPAY_HOST=your-domain.com
25+
BTCPAY_PORT=23000
2526

26-
# === LIGHTNING (optional) ===
27-
LIGHTNING_ALIAS=MyRTMPayNode
27+
# ── Lightning Network (optional) ───────────────────────────
28+
LIGHTNING_ALIAS=MyRTMPayNode

0 commit comments

Comments
 (0)