Files
HomeServerCTs/CT-Files/nodered/Scripts/Update-NodeRed.sh
Bram Prieshof b519337f22 CT NodeRed: Update Theme
The midnight-red theme is now meged in the theme-collection.
These changes are reflected in the init and update script
2023-09-20 23:39:36 +02:00

10 lines
281 B
Bash

#!/bin/ash
#Run folowing commands as 'node' user
sudo -u node ash << EOF
/usr/local/bin/pm2 stop nodered
npm install --prefix /opt/node/node-red/app node-red @node-red-contrib-themes/theme-collection
npm update --prefix /opt/node/node-red/app
/usr/local/bin/pm2 start nodered
EOF