summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorYuriy Tkachenko <yuri.tam.tkachenko@gmail.com>2015-11-26 13:27:05 +0300
committerYuriy Tkachenko <yuri.tam.tkachenko@gmail.com>2015-11-26 13:27:05 +0300
commit71b548ef052d4e84ea0d067df51e4850ffdba572 (patch)
treefaa6bc4213305e4292ae53d4d70a037531f295ab /doc
parentaaced173f8b3020fbbef236d84b070c2c67ee968 (diff)
downloadchat-71b548ef052d4e84ea0d067df51e4850ffdba572.tar.gz
chat-71b548ef052d4e84ea0d067df51e4850ffdba572.tar.bz2
chat-71b548ef052d4e84ea0d067df51e4850ffdba572.zip
Update Setup.md
Fixed process for Mac OS X, makes it easier to install that way
Diffstat (limited to 'doc')
-rw-r--r--doc/developer/Setup.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/developer/Setup.md b/doc/developer/Setup.md
index 882aac530..bb4fed377 100644
--- a/doc/developer/Setup.md
+++ b/doc/developer/Setup.md
@@ -11,7 +11,10 @@ Developer Machine Setup
`docker-machine ip dev`
3. Add a line to your /etc/hosts that goes `<Docker IP> dockerhost`
4. Run `docker-machine env dev` and copy the export statements to your ~/.bash_profile
-2. Download Go 1.5.1 from http://golang.org/dl/
+2. Download Go 1.5.1 and Node.js using Homebrew
+ 1. Download Homebrew from http://brew.sh/
+ 2. `brew install go`
+ 3. `brew install node`
3. Set up your Go workspace
1. `mkdir ~/go`
2. Add the following to your ~/.bash_profile
@@ -21,9 +24,9 @@ Developer Machine Setup
If you don't increase the file handle limit you may see some weird build issues with browserify or npm.
3. Reload your bash profile
`source ~/.bash_profile`
-4. Install Node.js using Homebrew
- 1. Download Homebrew from http://brew.sh/
- 2. `brew install node`
+4. Install Godep
+ 1. `cd ~/go`
+ 2. `go get github.com/tools/godep`
5. Install Compass
1. Run `ruby -v` and check the ruby version is 1.8.7 or higher
2. `sudo gem install compass`