1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
amqp.gen:
go run protocol/*.go && go fmt amqp/*_generated.go
deps:
dep ensure && cd admin-frontend && yarn install
build.all: deps
go build -o bin/garagemq main.go && cd admin-frontend && yarn build
build:
env GO111MODULE=on go build -o bin/garagemq main.go
run: build
bin/garagemq
profile: build
bin/garagemq --hprof=true
vet:
env GO111MODULE=on go vet github.com/valinurovam/garagemq...
test:
ulimit -n 2048 && env GO111MODULE=on go test -cover github.com/valinurovam/garagemq...
|