pmclanahan / django-celery-email

A Django email backend that uses a celery task for sending the email.
BSD 3-Clause "New" or "Revised" License
477 stars 108 forks source link

Running the celery worker server for django-celery-email (Doc Request) #7

Closed radzhome closed 8 years ago

radzhome commented 10 years ago

Looking at the fist steps with celery doc, I can't seem to bridge the gap between installing django-celery-email and installing celery (pip install celery) and setting up the worker server. Looking at these docs, http://docs.celeryproject.org/en/latest/getting-started/first-steps-with-celery.html#application you have to configure an application. Can someone fill in the gaps for those of us new to celery?

I also came across this: http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html#starting-the-worker-process . Is there a copy and paste task(s).py we can use for the django-celery-email app? Thanks, Rad.

zkanda commented 10 years ago

@radlws If you want to use the latest and greatest version of celery then you have to wait until this project is updated. For now do it manually using the celery docs.

radzhome commented 10 years ago

Will do, thanks.