Debugging Python and Django app in vscode
Can debug with Vscode easy - https://code.visualstudio.com/docs/editor/debugging
{ "version": "0.2.0", "configurations": [ { "name": "Shipping", "python": "C:\\Users\\S2753G\\Envs\\shipping\\Scripts\\python.exe", "type": "python", "request": "launch", "program": "C:\\Users\\S2753G\\OneDrive - SEB\\GIT\\shipping\\code\\backend\\app\\manage.py", "console": "internalConsole", "args": [ "runserver" ], "django": true, "justMyCode": true } ] }