DEV Community

Mayank-21
Mayank-21

Posted on

How to debug django web application using specific port & localhost in visual studio code?

I want to debug django web application using visual code for that I have found solution that I have to edit launch.json for debugging django web application.

launch.json

"name": "Python: Django",
            "type": "python",
            "request": "launch",
            "program": "${workspaceFolder}\\web_app_test\\manage.py",
            "port": "8005",
            "address" : "192.168.1.195",

I have implemented above code in launch.json but…

Top comments (0)