mirror of
https://github.com/fullstack-cash/bch-api.git
synced 2026-09-21 16:52:04 -07:00
Updating README and shell script examples
This commit is contained in:
+10
-2
@@ -1,5 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Docker containers for the below infrastructure is described here:
|
||||
# https://psfoundation.cash/blog/cash-stack
|
||||
# Pre-synced databases can be downloaded on the CashStrap page:
|
||||
# https://fullstack.cash/cashstrap
|
||||
|
||||
# Which network are you using?
|
||||
export NETWORK=mainnet
|
||||
#export NETWORK=testnet
|
||||
@@ -15,7 +20,6 @@ export SLPDB_URL=http://<SLPDB IP>:12300/
|
||||
export SLPDB_PASS=somelongpassword
|
||||
# Use the same address as SLPDB_URL if you don't have a separate whitelist server.
|
||||
export SLPDB_WHITELIST_URL=http://<SLPDB IP>:12300/
|
||||
|
||||
# slp-api alternative SLP validator using slp-validate:
|
||||
# https://github.com/Permissionless-Software-Foundation/slp-api
|
||||
export SLP_API_URL=http://10.0.0.5:5001/
|
||||
@@ -24,13 +28,17 @@ export SLP_API_URL=http://10.0.0.5:5001/
|
||||
export FULCRUM_URL=192.168.0.6
|
||||
export FULCRUM_PORT=50002
|
||||
|
||||
# Redis DB - Used for rate limiting - customize to your own Redis installation.
|
||||
export REDIS_PORT=6379
|
||||
export REDIS_HOST=172.17.0.1
|
||||
|
||||
# JWT Token Secret
|
||||
# This is used to verify JWT tokens generated with jwt-bch-api:
|
||||
# https://github.com/Permissionless-Software-Foundation/jwt-bch-api
|
||||
export TOKENSECRET=somelongpassword
|
||||
|
||||
# So that bch-api can call bch-js locally.
|
||||
export LOCAL_RESTURL=http://127.0.0.1:3000/v3/
|
||||
export LOCAL_RESTURL=http://127.0.0.1:3000/v4/
|
||||
|
||||
# Basic Authentication password
|
||||
export PRO_PASS=somerandomepassword:someotherrandompassword:aThirdPassword
|
||||
|
||||
Reference in New Issue
Block a user