mirror of
https://github.com/romanz/electrs.git
synced 2026-08-13 12:32:52 +02:00
15 lines
285 B
Bash
Executable file
15 lines
285 B
Bash
Executable file
#!/bin/bash
|
|
set -eux
|
|
cd `dirname $0`
|
|
|
|
cargo fmt --all
|
|
cargo build --all --features "metrics_process" --release
|
|
|
|
NETWORK=$1
|
|
shift
|
|
|
|
DB=${DB-./db}
|
|
export RUST_LOG=${RUST_LOG-INFO}
|
|
target/release/electrs --network $NETWORK --db-dir $DB --daemon-dir $HOME/.bitcoin $*
|
|
|
|
# use SIGINT to quit
|