Files
psf-bch-api/.env-local
T

31 lines
567 B
Plaintext
Raw Normal View History

# START INFRASTRUCTURE SETUP
# Full Node Connection
RPC_BASEURL=http://172.17.0.1:8332
RPC_USERNAME=bitcoin
RPC_PASSWORD=password
2025-11-15 07:03:13 -08:00
# Fulcrum Indexer
FULCRUM_API=http://172.17.0.1:3001/v1
# SLP Indexer
SLP_INDEXER_API=http://localhost:5010
2025-11-23 10:16:21 -08:00
# REST API URL for wallet operations
LOCAL_RESTURL=http://localhost:5942/v6
2025-11-23 10:16:21 -08:00
# END INFRASTRUCTURE SETUP
# START ACCESS CONTROL
# x402 payments required to access this API?
X402_ENABLED=false
# Basic Authentication required to access this API?
USE_BASIC_AUTH=true
BASIC_AUTH_TOKEN=some-random-token
# END ACCESS CONTROL