From 9786f1794f12ad88bb8c3d525a8609979be9c1b5 Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 12 Mar 2022 10:53:37 +0000 Subject: [PATCH] Install production backend/frontend configurations from master --- production/mempool-install-all | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/production/mempool-install-all b/production/mempool-install-all index 6fc302dcd..1295de36c 100755 --- a/production/mempool-install-all +++ b/production/mempool-install-all @@ -7,7 +7,7 @@ do mkdir -p "${HOME}/public_html/${site}/" cd "${HOME}/${site}/backend/" - cp "../production/mempool-config.${site}.json" "mempool-config.json" + cp "${HOME}/mempool/production/mempool-config.${site}.json" "mempool-config.json" npm install npm run build @@ -15,6 +15,7 @@ do if [ "${site}" = "mainnet" ] then cd "${HOME}/${site}/frontend/" + cp "${HOME}/mempool/production/mempool-frontend-config.${site}.json" "mempool-frontend-config.json" npm install npm run build rsync -av ./dist/mempool/browser/* "${HOME}/public_html/${site}/"