-
Notifications
You must be signed in to change notification settings - Fork 0
A small instant demostrated how celery works
source edited this page Sep 22, 2016
·
7 revisions
To start celery as worker
export PYTHONPATH=<path-to-our-myapp-location> celery -A myapp worker -l info
or one might want to add queue to specifical worker
<do PYTHONPATH here> celery -A myapp worker -l info -Q machine1
then you can monitor the output of the work via console
C, Linux, user login