Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 788 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 788 Bytes

A learning project with Django + Redis + RabbitMQ with regular and recurrent tasks.

Manual to start services:

Celery on Windows

To run on Windows, run celery with the command below:

celery -A django_redis_celery worker -l info -P threads

or

celery -A django_redis_celery beat -l info -pool==solo

Celery and Beat on Windows

To run on Windows, run celery and beat in two separate command windows with the commands below:

celery -A django_redis_celery worker -l info -P threads- celery

celery -A django_redis_celery beat --scheduler django -l info - beat

Celery on Linux, Mac

celery -A django_redis_celery worker -l info

Celery and Beat on Linux, Mac

celery -A django_redis_celery worker --beat --scheduler django -l info