diff --git a/Makefile b/Makefile index 950e219..1b778e5 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: clean build fmt lint test vet install build: @echo "+ $@" - @go build -tags "$(BUILDTAGS) cgo" . + @go build -tags "$(BUILDTAGS) cgo" . ## Thinking of downloading the required go deps in here. #@docker build -t ch3ck/ytd:v1 . static: diff --git a/README.md b/README.md index 7eaa5ef..805ec6b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # ytd -A Go Application for downloading Youtube videos and mp3 +A Go Application for downloading Youtube videos and converting to other formats[FLV, mp3]. To detailed design architecture. Take a look at the [Design Document](ARCHITECTURE) markdown. ## Pre requisites @@ -12,6 +12,7 @@ Clone GIT repo: $ git clone htps://github.com/Ch3ck/ytd $ go get -u google.golang.org/api/youtube/v3 $ go get -u golang.org/x/oauth2/... +$ go get -u github.com/github.com/Sirupsen/logrus/... ``` @@ -53,3 +54,7 @@ YTD is licensed under [The MIT Licence](LICENSE). This project was created and maintained by [Nyah Check](https://twitter.com/nyah_check). Please feel free to reach out, I could always use your help or advice :-) +## Notes + +* Add vendoring for required Go deps. +