Files
psf-bch-api-base/production/docker/.env-example
T

36 lines
722 B
Plaintext
Raw Normal View History

2025-11-27 05:58:44 -08:00
# START INFRASTRUCTURE SETUP
# Full Node Connection
RPC_BASEURL=http://172.17.0.1:8332
RPC_USERNAME=bitcoin
RPC_PASSWORD=password
# Fulcrum Indexer
FULCRUM_API=http://172.17.0.1:3001/v1
# SLP Indexer
2025-12-21 16:31:37 -07:00
SLP_INDEXER_API=http://172.17.0.1:5010
2025-11-27 05:58:44 -08:00
# REST API URL for wallet operations
2025-12-21 16:31:37 -07:00
LOCAL_RESTURL=http://172.17.0.1:5942/v6
2025-11-27 05:58:44 -08:00
# END INFRASTRUCTURE SETUP
# START ACCESS CONTROL
2025-11-28 06:02:05 -08:00
PORT=5942
2025-11-27 05:58:44 -08:00
# x402 payments required to access this API?
2025-11-28 06:02:05 -08:00
X402_ENABLED=true
SERVER_BCH_ADDRESS=bitcoincash:qqlrzp23w08434twmvr4fxw672whkjy0py26r63g3d
FACILITATOR_URL=http://localhost:4345/facilitator
2025-12-21 16:31:37 -07:00
X402_PRICE_SAT=200
2025-11-27 05:58:44 -08:00
# Basic Authentication required to access this API?
2025-11-28 06:02:05 -08:00
USE_BASIC_AUTH=true
BASIC_AUTH_TOKEN=some-random-token
2025-11-27 05:58:44 -08:00
# END ACCESS CONTROL