make faucet port configurable, fix typo

This commit is contained in:
Jude Nelson
2020-10-18 16:32:13 -04:00
parent 06d886f56d
commit 244ddbc42a

View File

@@ -1,7 +1,7 @@
# local config
__ROOT="$(realpath "$(pwd)"/..)"
__ETC="$_ROOT/etc"
__MNT="$_ROOT/mnt"
__ETC="$__ROOT/etc"
__MNT="$__ROOT/mnt"
BITCOIN_CONF="$__ETC/bitcoin.conf"
BITCOIN_CONTROLLER_CONF="$__ETC/bitcoin-neon-controller.toml"
@@ -19,6 +19,8 @@ FAUCET_LOGFILE="$__MNT/faucet.log"
STACKS_MASTER_PUBLIC_IP="127.0.0.1"
FAUCET_PORT=8080
__NOW="$(date +%s)"
STACKS_CHAINSTATE_DIR="$__MNT/stacks-chainstate-$__NOW"
BITCOIN_DATA_DIR="$__MNT/bitcoin-$__NOW"