Add go get again

pull/188/head
RichardNysater 2017-06-04 00:55:15 +02:00
parent 0e14f48596
commit 59575526c5
1 changed files with 14 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* [Requirements](#requirements)
* [YouTube API Key](#youtube-api-key)
* [SoundCloud API Key](#soundcloud-api-key)
* [Via `go get`](#via-go-get-recommended)
* [From Source](#from-source)
* [Docker](#docker)
* [Usage](#usage)
@ -70,6 +71,19 @@ A SoundCloud client ID must be present in your configuration file in order to us
**3)** You should now see that a client ID has been generated. Copy/paste this ID (NOT the client secret) into the configuration file located at `$HOME/.config/mumbledj/mumbledj.yaml`.
### Via `go get` (recommended)
After verifying that the [requirements](#requirements) are installed, simply issue the following command:
```
go get -u github.com/matthieugrieger/mumbledj
```
This should place a binary in `$GOPATH/bin` that can be used to start the bot.
**NOTE:** If using Go 1.5, you MUST execute the following for `go get` to work:
```
export GO15VENDOREXPERIMENT=1
```
### From Source
First, clone the MumbleDJ repository to your machine:
```