diff options
author | Duda Dornelles <dudassdornelles@gmail.com> | 2014-11-24 08:12:04 -0200 |
---|---|---|
committer | Duda Dornelles <dudassdornelles@gmail.com> | 2014-11-24 08:12:04 -0200 |
commit | d4b29e22f51c986e4b8306f1782ef3603248d0d5 (patch) | |
tree | bfc26fb6fe638e1858e510d9969a18573de0d146 | |
parent | 5c39786d9166d4882e787d6b80d7086c5c34e395 (diff) | |
parent | b02c547e966c20484f2251fd9d244f94ddf031c7 (diff) |
Merge pull request #161 from ackackack/master
Wording and script alterations
-rw-r--r-- | provisioning/README.md | 4 | ||||
-rw-r--r-- | provisioning/provision.sh | 8 |
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 |