From 716b7d658c640faa5dc65bba9ff9ab2ed0238962 Mon Sep 17 00:00:00 2001 From: Tomi Oikarinen Date: Mon, 29 Aug 2022 14:27:39 +0300 Subject: [PATCH] backend: Makefile: rename `build` -> `docker-build` and add `docker-build-backend-only` --- backend/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/backend/Makefile b/backend/Makefile index b61088d3e..562078127 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -1,10 +1,13 @@ -.PHONY = all build format tests dump +.PHONY = all docker-build docker-build-backend-only tests format dump -all: format tests build +all: format tests docker-build -build: +docker-build: docker-compose up --detach --build +docker-build-backend-only: + docker-compose up --detach --build hitas-backend + tests: pytest --cov