summaryrefslogtreecommitdiffstats
path: root/doc/developer
diff options
context:
space:
mode:
authorAsaad Mahmood <Unknowngi@live.com>2015-10-19 22:59:01 +0500
committerAsaad Mahmood <Unknowngi@live.com>2015-10-19 22:59:01 +0500
commit5135986a3b13c0a4474dbbca683d89ffbc1dead5 (patch)
tree42e511c01a0e707356091fd4d09911eb18b8ca20 /doc/developer
parent2d42aefeafd2a0bea6419a6ef79c0c9b1fd313eb (diff)
parentfd69910fab332642a7793e64064169e89eb0c3de (diff)
downloadchat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.tar.gz
chat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.tar.bz2
chat-5135986a3b13c0a4474dbbca683d89ffbc1dead5.zip
Merge branch 'master' of https://github.com/mattermost/platform into ui-improvements
Diffstat (limited to 'doc/developer')
-rw-r--r--doc/developer/Setup.md8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/developer/Setup.md b/doc/developer/Setup.md
index d806b7a9b..e78d4dff2 100644
--- a/doc/developer/Setup.md
+++ b/doc/developer/Setup.md
@@ -16,7 +16,9 @@ Developer Machine Setup
1. `mkdir ~/go`
2. Add the following to your ~/.bash_profile
`export GOPATH=$HOME/go`
- `export PATH=$PATH:$GOPATH/bin`
+ `export PATH=$PATH:$GOPATH/bin`
+ `ulimit -n 8096`
+ 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
@@ -57,7 +59,9 @@ Any issues? Please let us know on our forums at: http://forum.mattermost.org
2. Add the following to your ~/.bashrc
`export GOPATH=$HOME/go`
`export GOROOT=/usr/local/go`
- `export PATH=$PATH:$GOROOT/bin`
+ `export PATH=$PATH:$GOROOT/bin`
+ `ulimit -n 8096`
+ If you don't increase the file handle limit you may see some weird build issues with browserify or npm.
3. Reload your bashrc
`source ~/.bashrc`
6. Install Node.js