Created
July 9, 2017 21:15
-
-
Save RickyVaughn2/146e5e9c2dd9478ad50c8fa6229e7c6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#sudo visudo | |
#username ALL=(ALL) NOPASSWD:ALL | |
# - mosquitto | |
sudo apt install mosquitto -y | |
sudo apt install mosquitto-clients -y | |
# - node | |
sudo apt install curl -y | |
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
sudo apt install -y nodejs | |
sudo apt install -y build-essential | |
# - node-red | |
sudo npm install -g [email protected] | |
sudo npm install -g node-gyp | |
sudo npm install -g --unsafe-perm node-red | |
sudo npm install -g node-red-admin | |
#generate password with | |
#node-red-admin hash-pw |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment