File tree Expand file tree Collapse file tree 2 files changed +18
-3
lines changed
Expand file tree Collapse file tree 2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 3232 @echo " ----- BUILD ------------------------------------------------------------------------------"
3333 @echo " all clean and build the project"
3434 @echo " clean clean the project"
35+ @echo " dependencies download the dependencies"
3536 @echo " build build all libraries and binaries"
3637 @echo " ----- TESTS && LINT ----------------------------------------------------------------------"
3738 @echo " test test all packages"
@@ -61,6 +62,22 @@ clean:
6162 @rm -Rf * .lock
6263 @rm -Rf build
6364
65+ dependencies :
66+ @echo
67+ @echo " ----- DOWNLOADING -------------------------------------------------------------------------"
68+ @go get -u github.com/gorilla/pat
69+ @go get -u github.com/gorilla/mux
70+ @go get -u github.com/gorilla/context
71+ @go get -u github.com/codegangsta/negroni
72+ @go get -u github.com/codegangsta/cli
73+ @go get -u github.com/Sirupsen/logrus
74+ @go get -u gopkg.in/mgo.v2
75+ @go get -u github.com/tools/godep
76+ @go get -u github.com/assembla/cony
77+ @go get -u github.com/streadway/amqp
78+ @go get -u github.com/golang/lint/golint
79+ @echo " ----- DONE --------------------------------------------------------------------------------"
80+
6481build : format
6582 @go build -v $(VERSION_FLAG ) -o $(GO ) /bin/handsongo handsongo.go
6683
Original file line number Diff line number Diff line change 11#HANDSONGO
22This project is meant to help learning go.
33``` shell
4- make dockerBuildUp
5- cd etc
6- ./apiquery.sh
4+ make help
75```
You can’t perform that action at this time.
0 commit comments