mirror of
https://github.com/mempool/mempool.git
synced 2024-12-29 09:44:26 +01:00
13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
|
#!/usr/local/bin/zsh
|
||
|
for site in mainnet liquid testnet
|
||
|
do
|
||
|
git clone https://github.com/mempool/mempool "${HOME}/${site}"
|
||
|
cd "${HOME}/${site}/backend/"
|
||
|
cp "../production/mempool-config.${site}.json" "mempool-config.json"
|
||
|
npm install
|
||
|
npm run build
|
||
|
cd "${HOME}/${site}/frontend/"
|
||
|
npm install
|
||
|
npm run build
|
||
|
done
|