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.
I am running PyCharm 4.x.
I've seen some other information that alludes others have it working, but haven't been able to locate any proper instructions.
You can have a Run Configuration
to run your celery
workers which then allows you to debug simply by clicking the debug
button. Here is how I set that up in PyCharm 5:
You need to set up a remote python interpreter and then set other configs like the image above. Note that the Working directory
is pointing to the bin
folder of the remote interpreter with celery
installed.