-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheasyinstall.sh
More file actions
executable file
·32 lines (24 loc) · 870 Bytes
/
easyinstall.sh
File metadata and controls
executable file
·32 lines (24 loc) · 870 Bytes
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
#!/bin/bash
# Schedulr Easy Install Script
# Install NodeJS 6
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
# Install apt-get dependencies
sudo apt-get install -y git mongodb
# Clone GitHub Repo
# Skipping because this version of the script is already in the repo folder
# git clone https://github.com/TomLavenziano/Schedulr.git
# Enter project directory
# Skipping because this version of the script is already in the repo folder
# cd Schedulr
# Install npm dependencies
npm install
# Install npm global dependencies
sudo npm install -g sails
# Print finish message
clear
echo "Schedulr easy install complete!"
# Skipping because this version of the script is already in the repo folder
# echo "Run \"cd Schedulr\" to change to Schedulr's folder"
echo "Run \"sails lift\" to run Schedulr"
echo "Have a nice day!"