diff --git a/parser/.gitignore b/parser/.gitignore index 672d9b658..064425025 100644 --- a/parser/.gitignore +++ b/parser/.gitignore @@ -1,2 +1,2 @@ .env -parser-app +bin/* diff --git a/parser/Makefile b/parser/Makefile index 9bf2e3f80..c7f4db140 100644 --- a/parser/Makefile +++ b/parser/Makefile @@ -1,19 +1,9 @@ SHELL := /bin/bash -## help: print this help message -.PHONY: help -help: - @echo 'Usage:' - @sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /' - build: - go build -o parser-app cmd/main.go + go build -o bin/service cmd/main.go -doc: - swag init -pd - - test: go test -v -cover ./... diff --git a/parser/bin/.gitkeep b/parser/bin/.gitkeep new file mode 100644 index 000000000..e69de29bb