Skip to content

Commit 23e30cf

Browse files
committed
Merge branch 'develop' of github.com:sebastienfr/handsongo into develop
2 parents 651b8eb + d3913fd commit 23e30cf

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ help:
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+
6481
build: format
6582
@go build -v $(VERSION_FLAG) -o $(GO)/bin/handsongo handsongo.go
6683

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#HANDSONGO
22
This project is meant to help learning go.
33
```shell
4-
make dockerBuildUp
5-
cd etc
6-
./apiquery.sh
4+
make help
75
```

0 commit comments

Comments
 (0)