Skip to content

Commit 71b74f6

Browse files
authored
Update launch.json debugpy
1 parent 984454a commit 71b74f6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

{{cookiecutter.__src_folder_name}}/.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{% if cookiecutter.project_backend == "django" %}
88
{
99
"name": "Python: Django",
10-
"type": "python",
10+
"type": "debugpy",
1111
"request": "launch",
1212
"program": "${workspaceFolder}/src/manage.py",
1313
"args": [
@@ -20,7 +20,7 @@
2020
{% if cookiecutter.project_backend == "flask" %}
2121
{
2222
"name": "Python: Flask",
23-
"type": "python",
23+
"type": "debugpy",
2424
"request": "launch",
2525
"module": "flask",
2626
"env": {
@@ -40,7 +40,7 @@
4040
{% if cookiecutter.project_backend == "fastapi" %}
4141
{
4242
"name": "Python: FastAPI",
43-
"type": "python",
43+
"type": "debugpy",
4444
"request": "launch",
4545
"module": "uvicorn",
4646
"args": [
@@ -51,7 +51,7 @@
5151
{% endif %}
5252
{
5353
"name": "Python: Debug Tests",
54-
"type": "python",
54+
"type": "debugpy",
5555
"request": "launch",
5656
"program": "${file}",
5757
"purpose": ["debug-test"],

0 commit comments

Comments
 (0)