celery added for asynchronus working of voice separation

This commit is contained in:
karthikeyan-ks
2025-01-08 01:09:50 +05:30
parent 10181e4d17
commit 889630d7f1
5 changed files with 22 additions and 16 deletions
+9
View File
@@ -0,0 +1,9 @@
from celery import Celery
app = Celery('backend')
# Load configuration from Django settings, using the CELERY namespace.
app.config_from_object('django.conf:settings', namespace='CELERY')
# Autodiscover tasks from installed apps.
app.autodiscover_tasks()