Merge pull request #1345 from mempool/wiz/add-production-frontend-configurations

Install production backend/frontend configurations from master
This commit is contained in:
wiz 2022-03-12 10:55:59 +00:00 committed by GitHub
commit d84bf66c35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}/"