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)