Skip to content

Commit 73fca95

Browse files
Move settings to launch config
Add django
1 parent 8c4dc0c commit 73fca95

File tree

2 files changed

+25
-21
lines changed

2 files changed

+25
-21
lines changed

.vscode/launch.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,31 @@
77

88
"version": "0.2.0",
99
"configurations": [
10+
{
11+
"name": "Python: Current File",
12+
"type": "python",
13+
"request": "launch",
14+
"program": "${file}",
15+
"console": "integratedTerminal",
16+
"cwd": "${fileDirname}",
17+
// "args": ["-i", "response.xml", "-o", "response.csv"],
18+
// "args": ["-d", "/Volumes/Data"],
19+
// "args": ["-f", "menubar.dmg"],
20+
// "args": ["-h"],
21+
// "env": {
22+
// "CREDS": "",
23+
// }
24+
},
25+
{
26+
"name": "Python: Django",
27+
"type": "python",
28+
"request": "launch",
29+
"program": "${workspaceFolder}/manage.py",
30+
"console": "integratedTerminal",
31+
"args": ["runserver"],
32+
"django": true,
33+
"justMyCode": true
34+
},
1035
{
1136
"name": "Python: Debug Tests",
1237
"type": "python",

.vscode/settings.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)