refactor code dir
rename backend/ to api/, remove leftover dir ui/
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user