24 lines
		
	
	
		
			618 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			618 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/local/bin/zsh
 | 
						|
export NVM_DIR="$HOME/.nvm"
 | 
						|
source "$NVM_DIR/nvm.sh"
 | 
						|
for site in mainnet liquid testnet bisq
 | 
						|
do
 | 
						|
    git clone https://github.com/mempool/mempool "${HOME}/${site}"
 | 
						|
    mkdir -p "${HOME}/public_html/${site}/"
 | 
						|
 | 
						|
    cd "${HOME}/${site}/backend/"
 | 
						|
    cp "../production/mempool-config.${site}.json" "mempool-config.json"
 | 
						|
    touch cache.json
 | 
						|
 | 
						|
    npm install --only=prod
 | 
						|
    npm run build
 | 
						|
 | 
						|
    if [ "${site}" = "mainnet" ]
 | 
						|
    then
 | 
						|
        cd "${HOME}/${site}/frontend/"
 | 
						|
        npm install --only=prod
 | 
						|
        npm run build
 | 
						|
        rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
 | 
						|
    fi
 | 
						|
done
 |