mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-14 20:53:26 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7fd8e3a242 | |||
| 17f5bb50cb |
@@ -109,7 +109,7 @@ build-frontend: ## build the frontend container
|
|||||||
.PHONY: build-frontend
|
.PHONY: build-frontend
|
||||||
|
|
||||||
build-agents: ## build the multi-user-transcriber agent container
|
build-agents: ## build the multi-user-transcriber agent container
|
||||||
@$(COMPOSE) build multi-user-transcriber
|
@$(COMPOSE) build multi-user-transcriber-dev
|
||||||
.PHONY: build-agents
|
.PHONY: build-agents
|
||||||
|
|
||||||
down: ## stop and remove containers, networks, images, and volumes
|
down: ## stop and remove containers, networks, images, and volumes
|
||||||
@@ -138,7 +138,7 @@ run-agents: ## start the multi-user-transcriber agent
|
|||||||
.PHONY: run-agents
|
.PHONY: run-agents
|
||||||
|
|
||||||
run-agent-multi-user-transcriber: ## start the LiveKit agents (multi users transcriber)
|
run-agent-multi-user-transcriber: ## start the LiveKit agents (multi users transcriber)
|
||||||
@$(COMPOSE) up --force-recreate -d multi-user-transcriber
|
@$(COMPOSE) up --force-recreate -d multi-user-transcriber-dev
|
||||||
.PHONY: run-agent-multi-user-transcriber
|
.PHONY: run-agent-multi-user-transcriber
|
||||||
|
|
||||||
run-agent-metadata-collector: ## start the LiveKit agents (metadata collector)
|
run-agent-metadata-collector: ## start the LiveKit agents (metadata collector)
|
||||||
|
|||||||
+10
-10
@@ -271,6 +271,16 @@ services:
|
|||||||
- action: rebuild
|
- action: rebuild
|
||||||
path: ./src/agents
|
path: ./src/agents
|
||||||
|
|
||||||
|
multi-user-transcriber-dev:
|
||||||
|
build:
|
||||||
|
context: ./src/agents
|
||||||
|
target: development
|
||||||
|
env_file:
|
||||||
|
- env.d/development/multi_user_transcriber
|
||||||
|
volumes:
|
||||||
|
- ./src/agents:/app
|
||||||
|
- /app/.venv
|
||||||
|
|
||||||
redis-summary:
|
redis-summary:
|
||||||
image: redis
|
image: redis
|
||||||
ports:
|
ports:
|
||||||
@@ -332,16 +342,6 @@ services:
|
|||||||
- action: rebuild
|
- action: rebuild
|
||||||
path: ./src/summary
|
path: ./src/summary
|
||||||
|
|
||||||
multi-user-transcriber:
|
|
||||||
build:
|
|
||||||
context: ./src/agents
|
|
||||||
target: development
|
|
||||||
env_file:
|
|
||||||
- env.d/development/multi_user_transcriber
|
|
||||||
volumes:
|
|
||||||
- ./src/agents:/app
|
|
||||||
- /app/.venv
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
default:
|
default:
|
||||||
resource-server:
|
resource-server:
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
|
|||||||
|
|
||||||
ENV PATH="/app/.venv/bin:$PATH"
|
ENV PATH="/app/.venv/bin:$PATH"
|
||||||
|
|
||||||
CMD ["python", "metadata_collector.py", "dev"]
|
CMD ["python", "multi_user_transcriber.py", "dev"]
|
||||||
|
|
||||||
|
|
||||||
# ---- Production image ----
|
# ---- Production image ----
|
||||||
|
|||||||
Reference in New Issue
Block a user