-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guillaume Lefranc
committed
Jun 6, 2016
1 parent
d1750bc
commit 1da93c0
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## Building from source | ||
|
||
* Download a Go release (Go 1.6 minimum): https://golang.org/dl/ or use your system's release if >= 1.6 | ||
* Create a build directory: `mkdir -p ~/go` | ||
* Point GOPATH environment variable to this directory: `export GOPATH=~/go` | ||
* Clone the source: `go get github.com/mariadb-corporation/replication-manager` | ||
* Compile and install: `go install github.com/mariadb-corporation/replication-manager` | ||
* Add the go binaries directory to your path: `export PATH=$PATH:~/go/bin` |