Add new production installation script and related files
This commit is contained in:
22
production/electrs-start-liquidtestnet
Normal file → Executable file
22
production/electrs-start-liquidtestnet
Normal file → Executable file
@@ -1,30 +1,24 @@
|
||||
#!/usr/local/bin/zsh
|
||||
cd "$HOME/electrs"
|
||||
#source $HOME/.cargo/env
|
||||
#export PATH=$HOME/.cargo/bin:$PATH
|
||||
cd "${HOME}/electrs"
|
||||
#source "${HOME}/.cargo/env"
|
||||
#export PATH="${HOME}/.cargo/bin:${PATH}"
|
||||
|
||||
until false
|
||||
do
|
||||
# patch code for FreeBSD
|
||||
if grep XBS5 "$HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sysconf-0.3.4/src/raw.rs" ; then
|
||||
grep -v XBS5 $HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sysconf-0.3.4/src/raw.rs > /tmp/foo && \
|
||||
mv /tmp/foo $HOME/.cargo/registry/src/github.com-1ecc6299db9ec823/sysconf-0.3.4/src/raw.rs
|
||||
fi
|
||||
|
||||
cargo run \
|
||||
--release \
|
||||
--features liquid \
|
||||
--bin electrs \
|
||||
-- \
|
||||
-vv \
|
||||
--asset-db-path "$HOME/asset_registry_testnet_db" \
|
||||
--asset-db-path "${HOME}/asset_registry_testnet_db" \
|
||||
--address-search \
|
||||
--cors '*' \
|
||||
--db-dir /electrs \
|
||||
--db-dir __ELECTRS_DATA_ROOT__ \
|
||||
--network liquidtestnet \
|
||||
--daemon-dir $HOME \
|
||||
--daemon-dir "${HOME}" \
|
||||
--http-addr '[::]:3004' \
|
||||
--cookie 'foo:bar' \
|
||||
--precache-scripts $HOME/electrs/contrib/popular-scripts.txt
|
||||
--cookie '__ELEMENTS_RPC_USER__:__ELEMENTS_RPC_PASS__' \
|
||||
--precache-scripts "${HOME}/electrs/contrib/popular-scripts.txt"
|
||||
sleep 1
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user