From fc4b6d679a1862d8fca4c9c8b82d91e1a5ee92f9 Mon Sep 17 00:00:00 2001 From: leo <260626284+cameledev@users.noreply.github.com> Date: Tue, 7 Apr 2026 12:15:14 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F(devex)=20update=20Makefile?= =?UTF-8?q?=20for=20metadata-collector-dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add support for the new metadata collector in the Makefile. --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91afbb98..d51c8741 100644 --- a/Makefile +++ b/Makefile @@ -133,9 +133,18 @@ run-summary: ## start only the summary application and all needed services .PHONY: run-summary run-agents: ## start the multi-user-transcriber agent - @$(COMPOSE) up --force-recreate -d multi-user-transcriber + @$(MAKE) run-agent-multi-user-transcriber + @$(MAKE) run-agent-metadata-collector .PHONY: run-agents +run-agent-multi-user-transcriber: ## start the LiveKit agents (multi users transcriber) + @$(COMPOSE) up --force-recreate -d multi-user-transcriber +.PHONY: run-agent-multi-user-transcriber + +run-agent-metadata-collector: ## start the LiveKit agents (metadata collector) + @$(COMPOSE) up --force-recreate -d metadata-collector-dev +.PHONY: run-agent-metadata-collector + run: run: ## start the wsgi (production) and development server @$(MAKE) run-backend