refactor code dir

rename backend/ to api/, remove leftover dir ui/
This commit is contained in:
Joel Mathew Thomas
2025-01-09 11:39:56 +05:30
parent 3d0dfcd42b
commit 2608391608
147 changed files with 0 additions and 5640 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()