From dfaa27934235d1e5c47be196f848374e476a6051 Mon Sep 17 00:00:00 2001 From: Marius Date: Sun, 13 May 2018 13:58:24 +0200 Subject: [PATCH] Add dependency installation to README See https://github.com/tus/tusd/issues/187 --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cf84adc..2589797 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,16 @@ Windows in various formats of the ### Compile from source The only requirement for building tusd is [Go](http://golang.org/doc/install) 1.5 or newer. -If you meet this criteria, you can clone the git repository and build the binary: +If you meet this criteria, you can clone the git repository, install the remaining +depedencies and build the binary: ```bash git clone git@github.com:tus/tusd.git cd tusd + +go get -u github.com/aws/aws-sdk-go/... +go get -u github.com/prometheus/client_golang/prometheus + go build -o tusd cmd/tusd/main.go ```