Fix start/upgrade scripts to properly restart the backend processes

This commit is contained in:
wiz 2020-05-26 13:22:39 +09:00
parent 73fb18b929
commit 01ac06b096
No known key found for this signature in database
GPG Key ID: A394E332255A6173
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"production": "until false;do npm install;npm run build;node dist/index.js;sleep 1;done",
"production": "npm install && npm run build && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {

View File

@ -2,7 +2,7 @@
for site in mainnet liquid testnet
do
cd "${HOME}/${site}/backend/"
screen -dmS "${site}" npm run production
screen -dmS "${site}" sh -c 'while true;do npm run production;sleep 1;done'
done
#cd "${HOME}/webhook/"