visual-studio-debugging

launch.json breaks debugging in VSCode

launch.json breaks debugging in VSCode Question: I wanted to set justMyCode to false for a python project in VSCode. So I created a launch.json file in a .vscode folder under the project root folder with the following content: { "configurations": [ { "name": "Python: Current File", "type": "python", "request": "launch", "program": "${file}", "console": "integratedTerminal", // …

Total answers: 1

Debugging not working in VS Studio Code Django

Debugging not working in VS Studio Code Django Question: I have been working through the official Django Tutorial in Visual Studio Code but I have run into an issue. Currently when I ever I set a break-point at the line now = datetime.now the debugger seems to fail to reach it. My urls.py: from django.urls …

Total answers: 2