You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gary Gao edited this page Apr 18, 2016
·
2 revisions
Using celery with django
Celery Notes
more complex
more dependencies
more powerful and flexible
Starting the worker and beat
# execute celery in project dir(suppose the name of the project is `proj`)
$ celery -A proj worker --loglevel=INFO
$ celery beat -A proj --loglevel=INFO