forked from guardian/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provision.sh
43 lines (30 loc) · 1.27 KB
/
provision.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
#!/bin/bash
#####################################################
#
# Used to provision the Vagrant VM
#
#####################################################
#####################################################
# create the install_vars file. This is needed to
# configure the application
#####################################################
mkdir /etc/gu
echo 'STAGE=DEV
INT_SERVICE_DOMAIN=gudev.gnl
EXT_SERVICE_DOMAIN=' > /etc/gu/install_vars
#####################################################
###########################################################################################
# Install NodeJS https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
###########################################################################################
sudo apt-get update
sudo apt-get install -y python-software-properties python g++ make
sudo add-apt-repository -y ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install -y nodejs
###########################################################################################
sudo apt-get install -y graphicsmagick
sudo npm -g install grunt-cli
sudo apt-get install -y -o "Acquire::http::Timeout=900" openjdk-7-jdk
sudo apt-get install -y ruby1.9.1-full
sudo apt-get -y install git
sudo gem install bundler