Tagged Questions
0
votes
0answers
12 views
Nginx 504 Gateway Timeout with Django runserver and pdb
I'm running a development web server VM under Vagrant, with Nginx handling the web serving duties there. It forwards requests to Django's runserver.
Whenever I'm in a pdb debugging session that lasts ...
4
votes
2answers
113 views
How to debug Django app running on Heroku using a remote pdb connection?
To debug a bug I'm seeing on Heroku but not on my local machine, I'm trying to do step-through debugging.
The typical import pdb; pdb.set_trace() approach doesn't work with Heroku since you don't ...
0
votes
1answer
68 views
Where to set breakpoint in Django for a request (before being dispatched)?
Where is a good place to set a breakpoint in Django at the point where a page request comes in, but before the Django dispatcher has run?
I assume there's a loop in the Django web server (manage.py ...
1
vote
3answers
370 views
Django Gunicorn Debug
Initially I had a Django app with the included testing server. To debug this setup, I can just add a import pdb; pdb.set_trace() anywhere in the code and have a breaking point that throws me into an ...
0
votes
0answers
80 views
django debugging with emacs, have to rerun pdb after edit
Django debugging with Emacs
shows how to run pdb in emacs.
It works great but I have to kill pdb process and rerun it after changing source code because it won't recognize the change unless I ...
