summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorNavaL <ayoyo@thoughtworks.com>2016-02-09 13:41:21 +0100
committerNavaL <ayoyo@thoughtworks.com>2016-02-09 16:09:45 +0100
commit61c89b9ebef4ad6d1bf7eb01e48745eccb0a6bda (patch)
tree7af9dfe164ec1bb385c4d0c06efea6509fa227eb /README.md
parent722e3c8439c61beb229affcaf7174fe5cee92088 (diff)
adding OSX setup
Issue #593
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/README.md b/README.md
index 35a95d49..476eb5fa 100644
--- a/README.md
+++ b/README.md
@@ -101,13 +101,14 @@ You will need to install python, pip, npm and openssl. Details for OSX and Debia
In case of any issues, please ping us on IRC ([#pixelated on irc.freenode.net](irc://irc.freenode.net/pixelated)), we will be available to help you from there.
#### On OSX
-We provide a script to ease the setup. It will essentially install compass within a rbenv, npm, python from homebrew as well as all the project requirements. Please run the following:
-
+First, you will need to install the [GPG tools](https://gpgtools.org/) for Mac.
+Then, run the following sequence of command:
```bash
-curl https://raw.githubusercontent.com/pixelated/pixelated-user-agent/master/osx_setup.sh | sh
+$ curl https://raw.githubusercontent.com/pixelated/pixelated-user-agent/master/osx_setup.sh | sh
+$ cd pixelated-user-agent && source ~/.virtualenvs/user-agent-venv/bin/activate
```
-Please note that you will have to activate the virtualenv anytime you work on a different terminal. This is done by simply running `$ source ~/.virtualenvs/pixelated-venv/bin/activate` first.
+Please note that you will have to activate the virtualenv anytime you work on a different terminal. This is done by simply running `$ source ~/.virtualenvs/user-agent-venv/bin/activate` first.
Running the user agent ([How to](#running-the-user-agent)), and the various tests ([How to](#running-tests)) are the same as in the vagrant setup above.
@@ -115,10 +116,11 @@ Running the user agent ([How to](#running-the-user-agent)), and the various test
This is the setup for developers. Please run the following command:
```bash
-curl https://raw.githubusercontent.com/pixelated/pixelated-user-agent/master/debian_setup.sh | sh
+$ curl https://raw.githubusercontent.com/pixelated/pixelated-user-agent/master/debian_setup.sh | sh
+$ cd pixelated-user-agent && source ~/.virtualenvs/user-agent-venv/bin/activate
```
-Please note that you will have to activate the virtualenv anytime you work on a different terminal. This is done by simply running `$ source ~/.virtualenvs/pixelated-venv/bin/activate` first.
+Please note that you will have to activate the virtualenv anytime you work on a different terminal. This is done by simply running `$ source ~/.virtualenvs/user-agent-venv/bin/activate` first.
Running the user agent ([How to](#running-the-user-agent)), and the various tests ([How to](#running-tests)) are the same as in the vagrant setup above.