How to run celery worker on Windows without creating Windows Service? Is there any analogy to $ celery -A your_application worker?
$ celery -A your_application worker
Compile Celery with --pool=solo argument.
Example: celery -A your-application worker -l info --pool=solo
celery -A your-application worker -l info --pool=solo