I\'m trying to find some instructions on how to enable PyCharm debugging within my celery processes on a remote machine. The remote machine is running Ubuntu 14.04.
My working configuration:
/home/app/env/bin/celeryScript parameters: worker -B -n qrc -Q qrc -l info --app=backend.celery
-B is for celerybeet,
-n is node name,
-Q is queue name,
-l is log level, and
--app is the app name, a django app with celery.py next to settings.py in my case.Working directory: /home/app/server/ ie my django root folder