forked from mlfryman/dibster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.sh
executable file
·53 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
47
48
49
50
51
52
#!/bin/bash
if [ -z "$1" ] ; then
echo "Enter a GitHub Repository URL"
exit 1
fi
rm -rf .git
git init
git remote add origin $1
sudo rm -rf ~/.npm
rm -rf node_modules
npm install async --save
npm install body-parser --save
npm install express --save
npm install express-method-override --save
npm install jade --save
npm install lodash --save
npm install moment --save
npm install mongodb --save
npm install morgan --save
npm install less-middleware --save
npm install multiparty --save
npm install express-session --save
npm install connect-redis --save
npm install bcrypt --save
npm install chalk --save
npm install blanket --save-dev
npm install chai --save-dev
npm install coveralls --save-dev
npm install grunt --save-dev
npm install grunt-cli --save-dev
npm install grunt-contrib-jshint --save-dev
npm install grunt-contrib-watch --save-dev
npm install jshint-stylish --save-dev
npm install mocha --save-dev
npm install mocha-lcov-reporter --save-dev
npm install grunt-jscs --save-dev
npm install supertest --save-dev
npm test
git add .
git commit -am "initial files"
grunt build
echo "Success! Now push your initial commit to Github"
exit 0