From 9c1b074adfc31f9f3d903c81af44cc471fb92803 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Tue, 25 Mar 2025 17:27:21 +0100 Subject: [PATCH] build(Makefile): launch bash in shell-$SERVICE; add ghci target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bd281da99..c2be45eb0 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,10 @@ start-%: .PHONY: shell-% shell-%: - docker compose run $* + docker compose run --build --no-deps $* bash +.PHONY: ghci +ghci: + docker compose run --build --no-deps backend stack ghci --main-is=$(SRC) .PHONY: stop # HELP: stop all services