Files
MileVault/backend/app/workers/celery_app.py
T
owain 5a57e84e80
Build and push images / build-backend (push) Successful in 33s
Build and push images / build-worker (push) Successful in 32s
Build and push images / build-frontend (push) Successful in 5s
Pin bcrypt to 4.0.1, add celery_app entry point
2026-06-06 15:05:16 +01:00

7 lines
202 B
Python

"""
Celery entry point. Re-exports celery_app from tasks so the worker
can be started with: celery -A app.workers.celery_app worker
"""
from app.workers.tasks import celery_app
__all__ = ["celery_app"]