summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2015-10-19 13:35:35 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2015-10-19 13:35:35 -0400
commitfd69910fab332642a7793e64064169e89eb0c3de (patch)
tree6a1861753f94e6f8a647d01478d2cafaad0e197b
parentea1b3129688dd76c80c7d41eec4f2eb60f9f0639 (diff)
parent540d13b53bab7a1731798cd47e9bb91549db2230 (diff)
downloadchat-fd69910fab332642a7793e64064169e89eb0c3de.tar.gz
chat-fd69910fab332642a7793e64064169e89eb0c3de.tar.bz2
chat-fd69910fab332642a7793e64064169e89eb0c3de.zip
Merge pull request #1109 from mattermost/setup-dev
Updating developer machine setup
-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