-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·46 lines (43 loc) · 1.13 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# SETUP SCRIPT
# run this script to install all the required tools and packages.
red=`tput setaf 1`
green=`tput setaf 2`
reset=`tput sgr0`
echo
echo "========= CHANGING DIRECTORY TO ${green}FILES${reset} =============="
echo
if [[ -f "./files" ]]
then
cd files
fi
chmod +x .githooks/*
echo
echo "============= INSTALLING ${green}DEBIAN${reset} TOOLS =============="
echo
sudo apt update -y
sudo apt upgrade -y
sudo apt install -y psmisc lsof tree sqlite3 sqlite3-doc build-essential
echo
echo "========= INSTALLING NODE USING ${green}NODESOURCE${reset} ========="
echo
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo apt install -y nodejs
echo
echo "=========== INSTALLING THE ${green}NODE PACKAGES${reset} ==========="
echo
npm install
npm audit fix
echo
echo "============== RUNNING THE ${green}UNIT TESTS${reset} =============="
echo
npm test
echo
echo "================ RUNNING THE ${green}LINTER${reset} ================"
echo
npm run linter
echo
echo "===== CHECKING THE VERSION OF ${green}NODEJS${reset} INSTALLED ====="
echo
node -v
echo "================= ${green}SETUP COMPLETED ${reset} ================="