|
274 | 274 | "type": "python", |
275 | 275 | "request": "launch", |
276 | 276 | "stopOnEntry": true, |
277 | | -"pythonPath": "${config.python.pythonPath}", |
278 | | -"program": "${file}", |
279 | | -"cwd": "${workspaceRoot}", |
| 277 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 278 | +"program": "$${{file}}", |
| 279 | +"cwd": "$${{workspaceRoot}}", |
280 | 280 | "debugOptions": [ |
281 | 281 | "WaitOnAbnormalExit", |
282 | 282 | "WaitOnNormalExit", |
|
293 | 293 | "request": "launch", |
294 | 294 | "stopOnEntry": true, |
295 | 295 | "osx": { |
296 | | -"pythonPath": "${env.SPARK_HOME}/bin/spark-submit" |
| 296 | +"pythonPath": "$${env.SPARK_HOME}}/bin/spark-submit" |
297 | 297 | }, |
298 | 298 | "windows": { |
299 | | -"pythonPath": "${env.SPARK_HOME}/bin/spark-submit.cmd" |
| 299 | +"pythonPath": "$${{env.SPARK_HOME}}/bin/spark-submit.cmd" |
300 | 300 | }, |
301 | 301 | "linux": { |
302 | | -"pythonPath": "${env.SPARK_HOME}/bin/spark-submit" |
| 302 | +"pythonPath": "$${{env.SPARK_HOME}}/bin/spark-submit" |
303 | 303 | }, |
304 | | -"program": "${file}", |
305 | | -"cwd": "${workspaceRoot}", |
| 304 | +"program": "$${{file}}", |
| 305 | +"cwd": "$${{workspaceRoot}}", |
306 | 306 | "debugOptions": [ |
307 | 307 | "WaitOnAbnormalExit", |
308 | 308 | "WaitOnNormalExit", |
|
318 | 318 | "type": "python", |
319 | 319 | "request": "launch", |
320 | 320 | "stopOnEntry": true, |
321 | | -"pythonPath": "${config.python.pythonPath}", |
| 321 | +"pythonPath": "$${{config.python.pythonPath}}", |
322 | 322 | "module": "module.name", |
323 | | -"cwd": "${workspaceRoot}", |
| 323 | +"cwd": "$${{workspaceRoot}}", |
324 | 324 | "debugOptions": [ |
325 | 325 | "WaitOnAbnormalExit", |
326 | 326 | "WaitOnNormalExit", |
|
336 | 336 | "type": "python", |
337 | 337 | "request": "launch", |
338 | 338 | "stopOnEntry": true, |
339 | | -"pythonPath": "${config.python.pythonPath}", |
340 | | -"program": "${file}", |
| 339 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 340 | +"program": "$${{file}}", |
341 | 341 | "cwd": "null", |
342 | 342 | "console": "integratedTerminal", |
343 | 343 | "debugOptions": [ |
|
354 | 354 | "type": "python", |
355 | 355 | "request": "launch", |
356 | 356 | "stopOnEntry": true, |
357 | | -"pythonPath": "${config.python.pythonPath}", |
358 | | -"program": "${file}", |
| 357 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 358 | +"program": "${{file}}", |
359 | 359 | "cwd": "null", |
360 | 360 | "console": "externalTerminal", |
361 | 361 | "debugOptions": [ |
|
372 | 372 | "type": "python", |
373 | 373 | "request": "launch", |
374 | 374 | "stopOnEntry": true, |
375 | | -"pythonPath": "${config.python.pythonPath}", |
376 | | -"program": "${workspaceRoot}/manage.py", |
377 | | -"cwd": "${workspaceRoot}", |
| 375 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 376 | +"program": "$${{workspaceRoot}/manage.py", |
| 377 | +"cwd": "$${{workspaceRoot}}", |
378 | 378 | "args": [ |
379 | 379 | "runserver", |
380 | 380 | "--noreload" |
|
395 | 395 | "type": "python", |
396 | 396 | "request": "launch", |
397 | 397 | "stopOnEntry": false, |
398 | | -"pythonPath": "${config.python.pythonPath}", |
| 398 | +"pythonPath": "$${{config.python.pythonPath}}", |
399 | 399 | "program": "fully qualified path fo 'flask' executable. Generally located along with python interpreter", |
400 | | -"cwd": "${workspaceRoot}", |
| 400 | +"cwd": "$${{workspaceRoot}}", |
401 | 401 | "env": { |
402 | | -"FLASK_APP": "${workspaceRoot}/quickstart/app.py" |
| 402 | +"FLASK_APP": "$${{workspaceRoot}}/quickstart/app.py" |
403 | 403 | }, |
404 | 404 | "args": [ |
405 | 405 | "run", |
|
421 | 421 | "type": "python", |
422 | 422 | "request": "launch", |
423 | 423 | "stopOnEntry": false, |
424 | | -"pythonPath": "${config.python.pythonPath}", |
425 | | -"program": "${workspaceRoot}/run.py", |
426 | | -"cwd": "${workspaceRoot}", |
| 424 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 425 | +"program": "$${{workspaceRoot}}/run.py", |
| 426 | +"cwd": "$${{workspaceRoot}}", |
427 | 427 | "args": [], |
428 | 428 | "debugOptions": [ |
429 | 429 | "WaitOnAbnormalExit", |
|
440 | 440 | "type": "python", |
441 | 441 | "request": "launch", |
442 | 442 | "stopOnEntry": true, |
443 | | -"pythonPath": "${config.python.pythonPath}", |
444 | | -"program": "${workspaceRoot}/console.py", |
445 | | -"cwd": "${workspaceRoot}", |
| 443 | +"pythonPath": "$${{config.python.pythonPath}}", |
| 444 | +"program": "$${{workspaceRoot}}/console.py", |
| 445 | +"cwd": "$${{workspaceRoot}}", |
446 | 446 | "args": [ |
447 | 447 | "dev", |
448 | 448 | "runserver", |
|
462 | 462 | "name": "Attach (Remote Debug)", |
463 | 463 | "type": "python", |
464 | 464 | "request": "attach", |
465 | | -"localRoot": "${workspaceRoot}", |
466 | | -"remoteRoot": "${workspaceRoot}", |
| 465 | +"localRoot": "$${{workspaceRoot}}", |
| 466 | +"remoteRoot": "$${{workspaceRoot}}", |
467 | 467 | "port": 3000, |
468 | 468 | "secret": "my_secret", |
469 | 469 | "host": "localhost" |
|
0 commit comments