-
Notifications
You must be signed in to change notification settings - Fork 155
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
1 parent
737f13c
commit 2fb9bb0
Showing
2 changed files
with
10 additions
and
13 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 |
---|---|---|
|
@@ -297,15 +297,7 @@ Go installed on your computer to build Roshi. If you're on a Mac and use | |
|
||
# I just want to run the HTTP service! | ||
|
||
roshi-server uses vendored dependencies and a "blessed build" process to ensure | ||
stability. The recommended way to get and build roshi-server is | ||
See the appropriate sections of the [roshi-server README](build-run). | ||
|
||
git clone [email protected]:soundcloud/roshi | ||
cd roshi/roshi-server | ||
make | ||
|
||
Invoking `go get` directly (`go get github.com/soundcloud/roshi/roshi-server`) | ||
should work, with the caveat that it will download missing dependencies | ||
directly from their respective master branches, which may not be properly | ||
tested. | ||
[build-run]: https://github.com/soundcloud/roshi/blob/master/roshi-server#getting-and-building | ||
|
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 |
---|---|---|
|
@@ -16,9 +16,14 @@ stability over time. Users should get and build roshi-server by cloning this | |
repository and running `make` in the roshi-server subdirectory. A working Go | ||
toolchain is assumed. | ||
|
||
It's also possible to build roshi-server with a simple `go build`, with the | ||
caveat that it will use your normal GOPATH to resolve dependencies, and | ||
therefore will enforce no constraints on dependency versions. | ||
git clone [email protected]:soundcloud/roshi | ||
cd roshi/roshi-server | ||
make | ||
|
||
It's also possible to get roshi-server via `go get`, and/or build it with a | ||
simple `go build`, with the caveat that it will use your normal GOPATH to | ||
resolve dependencies, and therefore will enforce no constraints on dependency | ||
versions, which could introduce bugs or strange behavior. | ||
|
||
## Running | ||
|
||
|