Skip to content

Commit 6b5e996

Browse files
committed
Update launch config
1 parent 2954249 commit 6b5e996

File tree

1 file changed

+36
-6
lines changed

1 file changed

+36
-6
lines changed

.vscode/launch.json

Lines changed: 36 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,56 @@
2020
"name": "Python: Export Page",
2121
"type": "debugpy",
2222
"request": "launch",
23-
"program": "${workspaceFolder}/confluence_to_markdown/main.py",
23+
"program": "${workspaceFolder}/confluence_markdown_exporter/main.py",
2424
"justMyCode": false,
25-
"args": ["page", "<page_id>", "scratch"],
25+
"args": ["page", "<page-id>", "scratch"],
2626
"console": "integratedTerminal",
2727
"cwd": "${workspaceFolder}",
2828
"env": {
29-
"PYTHONPATH": "${workspaceRoot}"
29+
"PYTHONPATH": "${workspaceRoot}",
30+
"DEBUG": "true"
31+
}
32+
},
33+
{
34+
"name": "Python: Export Page with Descendants",
35+
"type": "debugpy",
36+
"request": "launch",
37+
"program": "${workspaceFolder}/confluence_markdown_exporter/main.py",
38+
"justMyCode": false,
39+
"args": ["page-with-descendants", "<page-id>", "scratch"],
40+
"console": "integratedTerminal",
41+
"cwd": "${workspaceFolder}",
42+
"env": {
43+
"PYTHONPATH": "${workspaceRoot}",
44+
"DEBUG": "true"
3045
}
3146
},
3247
{
3348
"name": "Python: Export Space",
3449
"type": "debugpy",
3550
"request": "launch",
36-
"program": "${workspaceFolder}/confluence_to_markdown/main.py",
51+
"program": "${workspaceFolder}/confluence_markdown_exporter/main.py",
3752
"justMyCode": false,
38-
"args": ["space", "<space_key>", "scratch"],
53+
"args": ["space", "<space-key>", "scratch"],
3954
"console": "integratedTerminal",
4055
"cwd": "${workspaceFolder}",
4156
"env": {
42-
"PYTHONPATH": "${workspaceRoot}"
57+
"PYTHONPATH": "${workspaceRoot}",
58+
"DEBUG": "true"
59+
}
60+
},
61+
{
62+
"name": "Python: Export All Spaces",
63+
"type": "debugpy",
64+
"request": "launch",
65+
"program": "${workspaceFolder}/confluence_markdown_exporter/main.py",
66+
"justMyCode": false,
67+
"args": ["all-spaces", "scratch"],
68+
"console": "integratedTerminal",
69+
"cwd": "${workspaceFolder}",
70+
"env": {
71+
"PYTHONPATH": "${workspaceRoot}",
72+
"DEBUG": "true"
4373
}
4474
}
4575
]

0 commit comments

Comments
 (0)