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