2018-10-14 18:00:06 +05:30
|
|
|
#!/usr/bin/env bash
|
2019-04-27 15:02:37 -04:00
|
|
|
CONFIG_PATH=/etc/lbry/lbrycrd.conf
|
2018-10-10 20:28:43 -04:00
|
|
|
|
2019-04-23 23:34:33 -04:00
|
|
|
function set_config() {
|
|
|
|
CONFIG_PATH=/etc/lbry/lbrycrd.conf
|
|
|
|
if [ -f "$CONFIG_PATH" ]
|
|
|
|
then
|
|
|
|
echo "Using the config file that was mounted into the container."
|
|
|
|
else
|
|
|
|
echo "Creating a fresh config file from environment variables."
|
|
|
|
## Set config params
|
|
|
|
echo "rpcuser=$RPC_USER" > $CONFIG_PATH
|
|
|
|
echo "rpcpassword=$RPC_PASSWORD" >> $CONFIG_PATH
|
|
|
|
echo "rpcallowip=$RPC_ALLOW_IP" >> $CONFIG_PATH
|
|
|
|
echo "rpcport=9245" >> $CONFIG_PATH
|
|
|
|
echo "rpcbind=0.0.0.0" >> $CONFIG_PATH
|
|
|
|
#echo "bind=0.0.0.0" >> $CONFIG_PATH
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-11-09 01:30:21 -05:00
|
|
|
|
2019-04-16 19:00:39 -04:00
|
|
|
## Ensure perms are correct prior to running main binary
|
|
|
|
/usr/bin/fix-permissions
|
2018-10-06 14:54:41 -04:00
|
|
|
|
2019-04-17 10:38:56 -04:00
|
|
|
## You can optionally specify a run mode if you want to use lbry defined presets for compatibility.
|
2018-11-12 20:27:11 -05:00
|
|
|
case $RUN_MODE in
|
2018-10-10 21:18:06 -04:00
|
|
|
default )
|
2019-04-23 23:34:33 -04:00
|
|
|
set_config
|
2019-04-16 19:00:39 -04:00
|
|
|
lbrycrdd -server -conf=$CONFIG_PATH -printtoconsole
|
2018-10-10 21:18:06 -04:00
|
|
|
;;
|
2019-04-23 23:34:33 -04:00
|
|
|
## If it's a first run you need to do a full index including all transactions
|
|
|
|
## tx index creates an index of every single transaction in the block history if
|
|
|
|
## not specified it will only create an index for transactions that are related to the wallet or have unspent outputs.
|
|
|
|
## This is generally specific to chainquery.
|
2018-10-10 21:18:06 -04:00
|
|
|
reindex )
|
2019-04-23 23:34:33 -04:00
|
|
|
## Apply this RUN_MODE in the case you need to update a dataset. NOTE: you do not need to use `RUN_MODE reindex` for more than one complete run.
|
|
|
|
set_config
|
2019-04-16 19:00:39 -04:00
|
|
|
lbrycrdd -server -txindex -reindex -conf=$CONFIG_PATH -printtoconsole
|
2018-10-10 21:18:06 -04:00
|
|
|
;;
|
|
|
|
chainquery )
|
2019-04-23 23:34:33 -04:00
|
|
|
## If your only goal is to run Chainquery against this instance of lbrycrd and you're starting a
|
|
|
|
## fresh local dataset use this run mode.
|
|
|
|
set_config
|
2019-04-16 19:00:39 -04:00
|
|
|
lbrycrdd -server -txindex -conf=$CONFIG_PATH -printtoconsole
|
2018-10-10 21:18:06 -04:00
|
|
|
;;
|
2019-04-23 23:34:33 -04:00
|
|
|
regtest )
|
|
|
|
## Set config params
|
|
|
|
## TODO: Make this more automagic in the future.
|
2019-04-27 15:02:37 -04:00
|
|
|
mkdir -p `dirname $CONFIG_PATH`
|
2019-04-27 17:22:12 -04:00
|
|
|
echo "rpcuser=lbry" > $CONFIG_PATH
|
|
|
|
echo "rpcpassword=lbry" >> $CONFIG_PATH
|
|
|
|
echo "rpcport=11337" >> $CONFIG_PATH
|
|
|
|
echo "rpcbind=0.0.0.0" >> $CONFIG_PATH
|
|
|
|
echo "rpcallowip=0.0.0.0/0" >> $CONFIG_PATH
|
|
|
|
echo "regtest=1" >> $CONFIG_PATH
|
|
|
|
echo "txindex=1" >> $CONFIG_PATH
|
|
|
|
echo "server=1" >> $CONFIG_PATH
|
|
|
|
echo "printtoconsole=1" >> $CONFIG_PATH
|
2019-04-23 23:34:33 -04:00
|
|
|
|
|
|
|
#nohup advance &>/dev/null &
|
2019-04-27 17:22:12 -04:00
|
|
|
lbrycrdd -conf=$CONFIG_PATH $1
|
2019-04-23 23:34:33 -04:00
|
|
|
;;
|
|
|
|
testnet )
|
|
|
|
## Set config params
|
|
|
|
## TODO: Make this more automagic in the future.
|
2019-04-27 15:02:37 -04:00
|
|
|
mkdir -p `dirname $CONFIG_PATH`
|
2019-04-27 17:22:12 -04:00
|
|
|
echo "rpcuser=lbry" > $CONFIG_PATH
|
|
|
|
echo "rpcpassword=lbry" >> $CONFIG_PATH
|
|
|
|
echo "rpcport=11337" >> $CONFIG_PATH
|
|
|
|
echo "rpcbind=0.0.0.0" >> $CONFIG_PATH
|
|
|
|
echo "rpcallowip=0.0.0.0/0" >> $CONFIG_PATH
|
|
|
|
echo "testnet=1" >> $CONFIG_PATH
|
|
|
|
echo "txindex=1" >> $CONFIG_PATH
|
|
|
|
echo "server=1" >> $CONFIG_PATH
|
|
|
|
echo "printtoconsole=1" >> $CONFIG_PATH
|
2019-04-23 23:34:33 -04:00
|
|
|
|
|
|
|
#nohup advance &>/dev/null &
|
2019-04-27 17:22:12 -04:00
|
|
|
lbrycrdd -conf=$CONFIG_PATH $1
|
2019-04-23 23:34:33 -04:00
|
|
|
;;
|
|
|
|
* )
|
|
|
|
echo "Error, you must define a RUN_MODE environment variable."
|
|
|
|
echo "Available options are testnet, regtest, chainquery, default, and reindex"
|
|
|
|
;;
|
2018-10-10 21:18:06 -04:00
|
|
|
esac
|