Ok thanks, Ken.
So it seems that its not pulling in the settings for some reason.
celery.py
import os
from celery import Celery
from celery.schedules import crontab
# Set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'app_backend.settings')
app = Celery('app_backend')
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks()
celeryconfig.py
empty
init.py
from .celery import app as celery_app
__all__ = ('celery_app',)
settings.py
CELERY_BROKER_URL = 'redis://:###t:6379/__redisinstance__',
CELERY_IMPORT = ('backend.tasks',)
CELERY_TIMEZONE = 'UTC'
CELERY_RESULT_BACKEND = 'redis://:A####t:6379/__redisbackendinstance__',
Can you see anything wrong with any of that?
Thanks