summaryrefslogtreecommitdiff
path: root/provisioning
diff options
context:
space:
mode:
authorackackack <zenackzen@gmail.com>2014-11-24 00:21:35 +0000
committerackackack <zenackzen@gmail.com>2014-11-24 00:21:35 +0000
commitb02c547e966c20484f2251fd9d244f94ddf031c7 (patch)
treebfc26fb6fe638e1858e510d9969a18573de0d146 /provisioning
parent5c39786d9166d4882e787d6b80d7086c5c34e395 (diff)
Wording and script alterations
Altered contents of: provision.sh - moved all apt-get's to a single line README.md - Edited lines to read a little better than before
Diffstat (limited to 'provisioning')
-rw-r--r--provisioning/README.md4
-rw-r--r--provisioning/provision.sh8
2 files changed, 3 insertions, 9 deletions
diff --git a/provisioning/README.md b/provisioning/README.md
index 46acbf0b..d29b3380 100644
--- a/provisioning/README.md
+++ b/provisioning/README.md
@@ -10,7 +10,7 @@ $ vagrant up
```
# Running the server
-Activate virtualenv and run Pixelated server
+Activate virtualenv and run Pixelated server:
```sh
$ cd /vagrant/service
$ source .virtualenv/bin/activate
@@ -19,4 +19,4 @@ $ pixelated-user-agent --host 0.0.0.0
After this you will be asked to setup a LEAP provider. Once entering valid LEAP credentials, you should have the server running.
-You should now be able to access the web app by typing localhost:3333 on any browser running on your host machine.
+You should now be able to access the web app by accessing http://localhost:3333 in your favourite browser on your host machine.
diff --git a/provisioning/provision.sh b/provisioning/provision.sh
index e130e34a..cba9e5c4 100644
--- a/provisioning/provision.sh
+++ b/provisioning/provision.sh
@@ -1,13 +1,7 @@
sudo apt-get update
-sudo apt-get install -y git
-sudo apt-get install -y nodejs-legacy
-sudo apt-get install -y npm
-sudo apt-get install -y python-setuptools
+sudo apt-get install -y git nodejs-legacy npm python-setuptools python-dev libffi-dev g++
sudo easy_install pip
sudo pip install virtualenv
-sudo apt-get install -y python-dev
-sudo apt-get install -y libffi-dev
-sudo apt-get install -y g++
sudo gem install bundler
/vagrant/provisioning/bootstrap.sh