Fix start/upgrade scripts to properly restart the backend processes
This commit is contained in:
parent
73fb18b929
commit
01ac06b096
@ -22,7 +22,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "npm run build && node dist/index.js",
|
"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"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
for site in mainnet liquid testnet
|
for site in mainnet liquid testnet
|
||||||
do
|
do
|
||||||
cd "${HOME}/${site}/backend/"
|
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
|
done
|
||||||
|
|
||||||
#cd "${HOME}/webhook/"
|
#cd "${HOME}/webhook/"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user