diff --git a/Makefile b/Makefile index 73f68d74..70c9db3c 100644 --- a/Makefile +++ b/Makefile @@ -27,4 +27,10 @@ deploy: race_test: cd backend/app && go test -race -mod=vendor -timeout=60s -count 1 ./... -.PHONY: bin \ No newline at end of file +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 \ No newline at end of file