summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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