Add new production installation script and related files

This commit is contained in:
wiz
2022-03-07 20:25:48 +01:00
parent 09e3791cee
commit 1e87c3857b
16 changed files with 1828 additions and 57 deletions

View File

@@ -1,32 +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
echo patching sysconf
grep -v XBS5 /elements/.cargo/registry/src/github.com-1ecc6299db9ec823/sysconf-0.3.4/src/raw.rs > /tmp/foo && \
mv /tmp/foo /elements/.cargo/registry/src/github.com-1ecc6299db9ec823/sysconf-0.3.4/src/raw.rs
fi
cargo run \
--release \
--features liquid \
--bin electrs \
-- \
-vvv \
--asset-db-path "$HOME/asset_registry_db" \
--asset-db-path "${HOME}/asset_registry_db" \
--address-search \
--cors '*' \
--db-dir /electrs \
--db-dir __ELECTRS_DATA_ROOT__ \
--network liquid \
--daemon-dir /elements \
--daemon-dir "${HOME}" \
--http-addr '[::]:3001' \
--monitoring-addr '127.0.0.1:4225' \
--cookie 'user:pass' \
--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