17 lines
446 B
Bash
17 lines
446 B
Bash
#!/bin/bash
|
|
|
|
echo "Running intval3 dependency install script"
|
|
sudo apt update
|
|
sudo apt install git ufw nginx jq -y
|
|
|
|
echo "Installing node.js dependencies.."
|
|
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
|
|
|
|
echo "Installing bluetooth dependencies..."
|
|
sudo apt install bluetooth bluez libbluetooth-dev libudev-dev -y
|
|
|
|
echo "Finished installing intval3 dependencies" |