We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 48b213c + 4cc1234 commit b505f61Copy full SHA for b505f61
.vscode/launch.json
@@ -0,0 +1,23 @@
1
+{
2
+ "version": "0.2.0",
3
+ "configurations": [
4
+ {
5
+ "name": "isic-cli",
6
+ "type": "debugpy",
7
+ "request": "launch",
8
+ // VSCode doesn't directly support console_scripts, see
9
+ // https://stackoverflow.com/questions/61693769/vs-code-run-debug-configuration-for-a-console-script-in-module-mode
10
+ // https://github.com/microsoft/vscode-python/issues/8372#issuecomment-717911693
11
+ "program": "${workspaceFolder}/isic_cli/cli/__main__.py",
12
+ "args": [
13
+ "--dev",
14
+ "image",
15
+ "download",
16
+ "--limit",
17
+ "10",
18
+ "${workspaceFolder}/tempdir",
19
+ ],
20
+ "console": "integratedTerminal"
21
+ }
22
+ ]
23
+}
0 commit comments