The midnight-red theme is now meged in the theme-collection. These changes are reflected in the init and update script
10 lines
281 B
Bash
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
|
|
|