33 lines
		
	
	
		
			889 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			889 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/local/bin/zsh
 | 
						|
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" \
 | 
						|
		--address-search \
 | 
						|
		--cors '*' \
 | 
						|
		--db-dir /electrs \
 | 
						|
		--network liquid \
 | 
						|
		--daemon-dir /elements \
 | 
						|
		--http-addr '[::]:3001' \
 | 
						|
		--monitoring-addr '127.0.0.1:4225' \
 | 
						|
		--cookie 'user:pass' \
 | 
						|
		--precache-scripts $HOME/electrs/contrib/popular-scripts.txt
 | 
						|
	sleep 1
 | 
						|
done
 |