How To Debug a Django Application in VS CODE (Visual Studio Code)

Описание к видео How To Debug a Django Application in VS CODE (Visual Studio Code)

Set breakpoints and debug a live Django Application!

Here's the code snippet for the VS Code configuration you will need to debug a Django app.
{
"name": "BlogTheData",
"python": "/Users/johnsolly/Documents/code/blogthedata/venv/bin/python3",
"type": "python",
"request": "launch",
"program": "/Users/johnsolly/Documents/code/blogthedata/django_project/manage.py",
"console": "internalConsole",
"args": ["runserver"],
"django": true,
"justMyCode": true,
}
And here is a link to Corey Schafer's Django Tutorials (Create your own Django App!)
   • Django Tutorials  

Time Stamps
05:05 - How to set up the VS Code configuration

Комментарии

Информация по комментариям в разработке