From 0fa44f9ba0b52bec25c96ac922c84a1f70363fd6 Mon Sep 17 00:00:00 2001 From: elza Date: Sun, 22 Sep 2024 13:30:04 -0400 Subject: [PATCH] add start to make file --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 026fa0d..3cfe603 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,10 @@ lint: test: docker compose exec app go test main_test.go -ci: lint test +start: + docker compose up -d + +ci: start lint test +