From 617beb3340c93c6e4c4f48c1a177908ca1aee63e Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 3 Aug 2026 18:29:34 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(devx)=20stop=20declaring=20LiveKit?= =?UTF-8?q?=20as=20an=20app-dev=20dependency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit LiveKit was declared as an app-dev dependency, which caused it (along with its egress) to be started whenever we ran unrelated commands such as tests, migrate or makemigrations. Drop that dependency and start LiveKit explicitly only when it is actually needed, i.e. when calling run-backend. --- Makefile | 1 + compose.yml | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa5c3708..2e5ae839 100644 --- a/Makefile +++ b/Makefile @@ -133,6 +133,7 @@ logs: ## display app-dev logs (follow mode) run-backend: ## start only the backend application and all needed services @$(COMPOSE) up --force-recreate -d celery-dev --remove-orphans @$(COMPOSE) up --force-recreate -d nginx + @$(COMPOSE) up -d livekit @echo "Wait for postgresql to be up..." @$(WAIT_DB) .PHONY: run-backend diff --git a/compose.yml b/compose.yml index 659f145f..252268f6 100644 --- a/compose.yml +++ b/compose.yml @@ -85,7 +85,6 @@ services: - postgresql - mailcatcher - redis - - livekit - createbuckets - createwebhook extra_hosts: