Skip to content

Commit 187b3b5

Browse files
committed
VSCode debug support
1 parent 9d014b0 commit 187b3b5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Python: Django",
6+
"type": "python",
7+
"request": "launch",
8+
"program": "${workspaceFolder}/manage.py",
9+
"console": "integratedTerminal",
10+
"args": [
11+
"runserver",
12+
"--nothreading"
13+
],
14+
"django": true
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)