31 lines
1.6 KiB
Bash
31 lines
1.6 KiB
Bash
|
|
# ─── Coin ────────────────────────────────────────────────────────────────────
|
||
|
|
COIN_NAME=BitcoinPurple
|
||
|
|
COIN_SYMBOL=BTCP
|
||
|
|
# POW, POS, or Hybrid
|
||
|
|
COIN_DIFFICULTY=POW
|
||
|
|
|
||
|
|
# ─── MongoDB (internal to this stack) ────────────────────────────────────────
|
||
|
|
MONGO_HOST=mongodb
|
||
|
|
MONGO_PORT=27017
|
||
|
|
MONGO_USER=eiquidus
|
||
|
|
MONGO_PASSWORD=change-me
|
||
|
|
MONGO_DATABASE=explorerdb
|
||
|
|
|
||
|
|
# ─── Wallet RPC ───────────────────────────────────────────────────────────────
|
||
|
|
# bitcoinpurpled container is reachable on the shared 'purple' Docker network
|
||
|
|
WALLET_RPC_HOST=bitcoinpurpled
|
||
|
|
WALLET_RPC_PORT=13495
|
||
|
|
# Copy rpcuser / rpcpassword values from ~/.bitcoinpurple/bitcoinpurple.conf
|
||
|
|
WALLET_RPC_USER=
|
||
|
|
WALLET_RPC_PASS=
|
||
|
|
|
||
|
|
# ─── Explorer web ────────────────────────────────────────────────────────────
|
||
|
|
# Host port the explorer is published on
|
||
|
|
EXPLORER_PORT=3001
|
||
|
|
# Bootswatch theme: Cerulean, Cosmo, Cyborg, Darkly, Flatly, Slate, Solar, ...
|
||
|
|
EXPLORER_THEME=Darkly
|
||
|
|
|
||
|
|
# ─── Sync intervals (seconds) ────────────────────────────────────────────────
|
||
|
|
SYNC_BLOCKS_INTERVAL=120
|
||
|
|
SYNC_PEERS_INTERVAL=300
|