💩(summary) vendor a first draft

This is written in a rush, boostrap the real logic with celery
worker to process meeting recording.

Lack of unit tests is critical, I am not proud of a it. I am
totally in a hurry for the demo. Not sure we will actually keep
this microservice.
This commit is contained in:
lebaudantoine
2024-11-22 11:28:08 +01:00
committed by aleb_the_flash
parent 4a53005ae3
commit e92f084afb
7 changed files with 285 additions and 18 deletions
+15
View File
@@ -1,4 +1,8 @@
services:
redis:
image: redis
ports:
- "6379:6379"
app:
container_name: app
build: .
@@ -10,3 +14,14 @@ services:
restart: always
env_file:
".env"
depends_on:
- redis
celery_worker:
container_name: celery_worker
build: .
command: celery -A summary.celery_worker worker --pool=solo --loglevel=debug
volumes:
- .:/app
depends_on:
- redis
- app