Skip to content

Commit

Permalink
backend: Makefile: rename build -> docker-build and add `docker-b…
Browse files Browse the repository at this point in the history
…uild-backend-only`
  • Loading branch information
toikarin-vincit committed Aug 30, 2022
1 parent cb53ac3 commit 716b7d6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions backend/Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 716b7d6

Please sign in to comment.