From aa20d32c27c9d333fa8e88a728f1a3ea7d021f2d Mon Sep 17 00:00:00 2001 From: "Max R. Carrara" Date: Sat, 16 Aug 2025 15:26:02 +0200 Subject: [PATCH] server: make: add local-env target for convenience Signed-off-by: Max R. Carrara --- wien_talks/wien_talks_server/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wien_talks/wien_talks_server/Makefile b/wien_talks/wien_talks_server/Makefile index 8f54d82..70f2ff5 100644 --- a/wien_talks/wien_talks_server/Makefile +++ b/wien_talks/wien_talks_server/Makefile @@ -9,10 +9,12 @@ COMPOSE_PROJECT := $(shell basename $(shell pwd)) .env: .env.template cp -a .env.template .env -.PHONY := local local-stop local-down local-clean +.PHONY := local local-env local-stop local-down local-clean local: .env docker compose -f $(COMPOSE_FILE_LOCAL) up -d +local-env: .env + local-stop: docker compose -f $(COMPOSE_FILE_LOCAL) stop