summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-12-15 07:03:33 -0500
committerChristopher Speller <crspeller@gmail.com>2015-12-15 07:03:33 -0500
commit1d4ce0f48901ced50f6225c70f102c9fbc661749 (patch)
tree2bbef05c42f2d3c06a6a24170929cfb532d69cc3 /doc
parent74f427fb1a5da8ccd0bbc4e4104830cfa12c70fb (diff)
parent763f92f0871eee9398ed3adffcda1f48eb3de8b6 (diff)
downloadchat-1d4ce0f48901ced50f6225c70f102c9fbc661749.tar.gz
chat-1d4ce0f48901ced50f6225c70f102c9fbc661749.tar.bz2
chat-1d4ce0f48901ced50f6225c70f102c9fbc661749.zip
Merge pull request #1709 from erikthered/arch-dev-setup
Add development setup instructions for Archlinux
Diffstat (limited to 'doc')
-rw-r--r--doc/developer/Setup.md51
1 files changed, 49 insertions, 2 deletions
diff --git a/doc/developer/Setup.md b/doc/developer/Setup.md
index 24e7d6a90..fd3704545 100644
--- a/doc/developer/Setup.md
+++ b/doc/developer/Setup.md
@@ -58,8 +58,7 @@ Any issues? Please let us know on our forums at: http://forum.mattermost.org
1. `mkdir ~/go`
2. Add the following to your ~/.bashrc
`export GOPATH=$HOME/go`
- `export GOROOT=/usr/local/go`
- `export PATH=$PATH:$GOROOT/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 bashrc
@@ -81,3 +80,51 @@ Any issues? Please let us know on our forums at: http://forum.mattermost.org
10. If tests passed, you can now run Mattermost using `make run`
Any issues? Please let us know on our forums at: http://forum.mattermost.org
+
+### Archlinux ###
+
+1. Install Docker
+ 1. `pacman -S docker`
+ 2. `gpasswd -a user docker`
+ 3. `systemctl enable docker.service`
+ 4. `systemctl start docker.service`
+ 5. `newgrp docker`
+2. Set up your dockerhost address
+ 1. Edit your /etc/hosts file to include the following line
+ `127.0.0.1 dockerhost`
+3. Install Go
+ 1. `pacman -S go`
+4. Set up your Go workspace and add Go to the PATH
+ 1. `mkdir ~/go`
+ 2. Add the following to your ~/.bashrc
+ 1. `export GOPATH=$HOME/go`
+ 2. `export GOROOT=/usr/lib/go`
+ 3. `export PATH=$PATH:$GOROOT/bin`
+ 3. Reload your bashrc
+ `source ~/.bashrc`
+4. Edit /etc/security/limits.conf and add the following lines (replace *username* with your user):
+
+ ```
+ username soft nofile 8096
+ username hard nofile 8096
+ ```
+
+ You will need to reboot after changing this. If you don't increase the file handle limit you may see some weird build issues with browserify or npm.
+5. Install Node.js
+ `pacman -S nodejs npm`
+6. Install Ruby and Compass
+ 1. `pacman -S ruby`
+ 2. Add executable gems to your path in your ~/.bashrc
+
+ `PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"`
+ 3. `gem install compass`
+7. Download Mattermost
+ `cd ~/go`
+ `mkdir -p src/github.com/mattermost`
+ `cd src/github.com/mattermost`
+ `git clone https://github.com/mattermost/platform.git`
+ `cd platform`
+8. Run unit tests on Mattermost using `make test` to make sure the installation was successful
+9. If tests passed, you can now run Mattermost using `make run`
+
+Any issues? Please let us know on our forums at: http://forum.mattermost.org