diff --git a/.gitignore b/.gitignore index cf52576..e4f3cd3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ +app *.db config.yml debugging/ -pushbits ### Go # Binaries for programs and plugins diff --git a/Makefile b/Makefile index 41855b1..2af8bdb 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ IMAGE := eikendev/pushbits +.PHONY: build +build: + go build -ldflags="-w -s" -o app . + .PHONY: test test: stdout=$$(gofmt -l . 2>&1); \