2017-08-22 01:11:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-11-22 16:57:40 +00:00
|
|
|
echo "Running intval3 dependency install script"
|
2018-10-07 19:10:04 +00:00
|
|
|
sudo apt update
|
|
|
|
sudo apt install git ufw nginx jq -y
|
2017-08-22 01:11:07 +00:00
|
|
|
|
|
|
|
echo "Installing node.js dependencies.."
|
2018-10-07 19:10:04 +00:00
|
|
|
sudo apt install nodejs npm -y
|
|
|
|
sudo npm install -g n
|
|
|
|
sudo n latest
|
|
|
|
sudo npm install -g npm@latest
|
|
|
|
sudo npm install -g pm2 node-gyp
|
2017-08-22 01:11:07 +00:00
|
|
|
|
|
|
|
echo "Installing bluetooth dependencies..."
|
2018-10-07 19:10:04 +00:00
|
|
|
sudo apt install bluetooth bluez libbluetooth-dev libudev-dev -y
|
2017-08-22 01:11:07 +00:00
|
|
|
|
2017-08-22 04:38:53 +00:00
|
|
|
echo "Finished installing intval3 dependencies"
|