mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 18:32:19 +01:00
24 lines
594 B
Bash
Executable File
24 lines
594 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
|
|
npm run build
|
|
|
|
if [ "${site}" = "mainnet" ]
|
|
then
|
|
cd "${HOME}/${site}/frontend/"
|
|
npm install
|
|
npm run build
|
|
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
|
fi
|
|
done
|