add make targets for backend build and test

This commit is contained in:
Umputun
2019-12-29 13:27:36 -06:00
parent 9df2b2a9ed
commit fe4e38a5b1
+7 -1
View File
@@ -27,4 +27,10 @@ deploy:
race_test:
cd backend/app && go test -race -mod=vendor -timeout=60s -count 1 ./...
.PHONY: bin
backend:
SKIP_BACKEND_TEST=true docker-compose -f compose-dev-backend.yml build
rundev: backend
SKIP_BACKEND_TEST=true docker-compose -f compose-dev-backend.yml up
.PHONY: bin backend