In pyCharm we have this option where we can configure Run button to start the server by adding the same to the script path.

I wanted to do the same in visual studio code, so that whenever I click Run, my django server gets started.
You need to create a launch.json in the folder .vscode which sits in the same folder as your manage.py.
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver",
],
"django": true
},
]
}
You can create one by clicking run & debug and then at top menu green triangle click add configuration -> python -> Django
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With