Skip to content

Commit

Permalink
Merge pull request #5 from lborie/develop
Browse files Browse the repository at this point in the history
Documentation improvements
  • Loading branch information
sebastienfr committed May 26, 2016
2 parents ab2d2a4 + 92565fd commit d3913fd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ help:
@echo "----- BUILD ------------------------------------------------------------------------------"
@echo "all clean and build the project"
@echo "clean clean the project"
@echo "dependencies download the dependencies"
@echo "build build all libraries and binaries"
@echo "----- TESTS && LINT ----------------------------------------------------------------------"
@echo "test test all packages"
Expand Down Expand Up @@ -61,6 +62,22 @@ clean:
@rm -Rf *.lock
@rm -Rf build

dependencies:
@echo
@echo "----- DOWNLOADING -------------------------------------------------------------------------"
@go get -u github.com/gorilla/pat
@go get -u github.com/gorilla/mux
@go get -u github.com/gorilla/context
@go get -u github.com/codegangsta/negroni
@go get -u github.com/codegangsta/cli
@go get -u github.com/Sirupsen/logrus
@go get -u gopkg.in/mgo.v2
@go get -u github.com/tools/godep
@go get -u github.com/assembla/cony
@go get -u github.com/streadway/amqp
@go get -u github.com/golang/lint/golint
@echo "----- DONE --------------------------------------------------------------------------------"

build: format
@go build -v $(VERSION_FLAG) -o $(GO)/bin/handsongo handsongo.go

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#HANDSONGO
This project is meant to help learning go.
```shell
make dockerBuildUp
cd etc
./apiquery.sh
make help
```

0 comments on commit d3913fd

Please sign in to comment.