summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-18 23:14:43 -0800
committer=Corey Hulen <corey@hulen.com>2015-06-18 23:14:43 -0800
commit8de815837894febdeda2aa1ca82820074b7eff67 (patch)
tree3c504b5718ada79f0a7985e5831966bac3f8f49a /scripts
parent1ec7996e4c798569d86b4135fae9653c386ac352 (diff)
downloadchat-8de815837894febdeda2aa1ca82820074b7eff67.tar.gz
chat-8de815837894febdeda2aa1ca82820074b7eff67.tar.bz2
chat-8de815837894febdeda2aa1ca82820074b7eff67.zip
Updating readme
Diffstat (limited to 'scripts')
-rw-r--r--scripts/README_DEV.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/scripts/README_DEV.md b/scripts/README_DEV.md
new file mode 100644
index 000000000..6a2dfc54d
--- /dev/null
+++ b/scripts/README_DEV.md
@@ -0,0 +1,42 @@
+Developer Machine Setup (Mac)
+-----------------------------
+
+DOCKER SETUP
+
+1. Follow the instructions at http://docs.docker.com/installation/mac/
+ 1. Use the Boot2Docker command-line utility
+ 2. If you do command-line setup use: `boot2docker init eval “$(boot2docker shellinit)”`
+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
+
+Any issues? Please let us know on our forums at: http://bit.ly/1MY1kul
+
+GO SETUP
+
+1. Download Go from http://golang.org/dl/
+
+NODE.JS SETUP
+
+1. Install homebrew from http://brew.sh
+2. `brew install node`
+
+COMPASS SETUP
+
+1. Make sure you have the latest version of Ruby
+2. `gem install compass`
+
+MATTERMOST SETUP
+
+1. Make a project directory for Mattermost, which we'll call **$PROJECT** for the rest of these instructions
+2. Make a `go` directory in your $PROJECT directory
+3. Open or create your ~/.bash_profile and add the following lines:
+ `export GOPATH=$PROJECT/go`
+ `export PATH=$PATH:$GOPATH/bin`
+ then refresh your bash profile with `source ~/.bash_profile`
+4. Then use `cd $GOPATH` and `mkdir -p src/github.com/mattermost` then cd into this directory and run `git clone github.com/mattermost/platform.git`
+5. If you do not have Mercurial, download it with: `brew install mercurial`
+6. Then do `cd platform` and `make test`. Provided the test runs fine, you now have a complete build environment.
+7. Use `make run` to run your code
+
+Any issues? Please let us know on our forums at: http://bit.ly/1MY1kul \ No newline at end of file