summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-09-11 11:24:41 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-09-11 11:24:41 -0400
commit2709b5f84753913d89682142acb53c74c50c7d77 (patch)
tree32af631d0cb2333cba84f80185eff0324b3a4a24
parent27e8b28672ede105044b19e2aebcf2f2ff51de28 (diff)
parentbda09c0030caf0f271c362e194a9eb998e56539d (diff)
downloadchat-2709b5f84753913d89682142acb53c74c50c7d77.tar.gz
chat-2709b5f84753913d89682142acb53c74c50c7d77.tar.bz2
chat-2709b5f84753913d89682142acb53c74c50c7d77.zip
Merge pull request #653 from lfbrock/patch-6
Updated developer install instructions
-rw-r--r--doc/install/dev-setup.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/install/dev-setup.md b/doc/install/dev-setup.md
index a088bbbc2..6d26cbd33 100644
--- a/doc/install/dev-setup.md
+++ b/doc/install/dev-setup.md
@@ -10,7 +10,7 @@ Developer Machine Setup
2. Get your Docker IP address with `boot2docker ip`
3. Add a line to your /etc/hosts that goes `<Docker IP> dockerhost`
4. Run `boot2docker shellinit` and copy the export statements to your ~/.bash_profile
-2. Download Go from http://golang.org/dl/
+2. Download Go (version 1.4.2) from http://golang.org/dl/
3. Set up your Go workspace
1. `mkdir ~/go`
2. Add the following to your ~/.bash_profile
@@ -28,7 +28,7 @@ Developer Machine Setup
`cd ~/go`
`mkdir -p src/github.com/mattermost`
`cd src/github.com/mattermost`
- `git clone github.com/mattermost/platform.git`
+ `git clone https://github.com/mattermost/platform.git`
`cd platform`
7. Run unit tests on Mattermost using `make test` to make sure the installation was successful
8. If tests passed, you can now run Mattermost using `make run`
@@ -50,7 +50,7 @@ Any issues? Please let us know on our forums at: http://forum.mattermost.org
`127.0.0.1 dockerhost`
3. Install build essentials
1. `apt-get install build-essential`
-4. Download Go from http://golang.org/dl/
+4. Download Go (version 1.4.2) from http://golang.org/dl/
5. Set up your Go workspace and add Go to the PATH
1. `mkdir ~/go`
2. Add the following to your ~/.bashrc
@@ -74,7 +74,7 @@ Any issues? Please let us know on our forums at: http://forum.mattermost.org
`cd ~/go`
`mkdir -p src/github.com/mattermost`
`cd src/github.com/mattermost`
- `git clone github.com/mattermost/platform.git`
+ `git clone https://github.com/mattermost/platform.git`
`cd platform`
9. Run unit tests on Mattermost using `make test` to make sure the installation was successful
10. If tests passed, you can now run Mattermost using `make run`