-
Notifications
You must be signed in to change notification settings - Fork 1
/
bootstrap.sh
41 lines (30 loc) · 1.02 KB
/
bootstrap.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
#!/bin/sh
# install java env
sudo aptitude install -y default-jre
sudo aptitude install -y default-jdk
# install git
sudo aptitude install -y git
# install curl
sudo aptitude install -y curl
# install nodejs
sudo curl -sL https://deb.nodesource.com/setup_5.x | bash -
sudo aptitude install -y nodejs
sudo aptitude install -y npm
# install mongo database
sudo aptitude install -y mongodb-org
sudo aptitude install -y mongodb
# install meteor
sudo curl https://install.meteor.com/ | sh
# install npm deps: bower, velocity, eslint
sudo npm install -g bower
sudo npm install -g velocity
sudo npm install -g eslint
sudo npm install -g js-beautify
sudo npm install -g web-component-tester
sudo npm install -g web-component-tester-istanbul
sudo npm install -g eslint-html-reporter
#install chrome
echo "deb http://dl.google.com/linux/deb/ stable non-free main" >> /etc/apt/sources.list
sudo wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
sudo apt-get update
sudo apt-get install google-chrome-stable