|
25 | 25 | "engines": { |
26 | 26 | "vscode": "^1.9.0" |
27 | 27 | }, |
28 | | - "recommendations":[ |
| 28 | + "recommendations": [ |
29 | 29 | "donjayamanne.jupyter" |
30 | 30 | ], |
31 | 31 | "keywords": [ |
|
286 | 286 | "pythonPath": "$${{config:python.pythonPath}}", |
287 | 287 | "program": "$${{file}}", |
288 | 288 | "cwd": "$${{workspaceRoot}}", |
289 | | - "env": null, |
| 289 | + "env": {}, |
290 | 290 | "envFile": "$${{workspaceRoot}}/.env", |
291 | 291 | "debugOptions": [ |
292 | 292 | "WaitOnAbnormalExit", |
|
314 | 314 | }, |
315 | 315 | "program": "$${{file}}", |
316 | 316 | "cwd": "$${{workspaceRoot}}", |
317 | | - "env": null, |
| 317 | + "env": {}, |
318 | 318 | "envFile": "$${{workspaceRoot}}/.env", |
319 | 319 | "debugOptions": [ |
320 | 320 | "WaitOnAbnormalExit", |
|
334 | 334 | "pythonPath": "$${{config:python.pythonPath}}", |
335 | 335 | "module": "module.name", |
336 | 336 | "cwd": "$${{workspaceRoot}}", |
337 | | - "env": null, |
| 337 | + "env": {}, |
338 | 338 | "envFile": "$${{workspaceRoot}}/.env", |
339 | 339 | "debugOptions": [ |
340 | 340 | "WaitOnAbnormalExit", |
|
353 | 353 | "stopOnEntry": true, |
354 | 354 | "pythonPath": "$${{config:python.pythonPath}}", |
355 | 355 | "program": "$${{file}}", |
356 | | - "cwd": null, |
| 356 | + "cwd": "", |
357 | 357 | "console": "integratedTerminal", |
358 | | - "env": null, |
| 358 | + "env": {}, |
359 | 359 | "envFile": "$${{workspaceRoot}}/.env", |
360 | 360 | "debugOptions": [ |
361 | 361 | "WaitOnAbnormalExit", |
|
373 | 373 | "stopOnEntry": true, |
374 | 374 | "pythonPath": "$${{config:python.pythonPath}}", |
375 | 375 | "program": "${{file}}", |
376 | | - "cwd": null, |
| 376 | + "cwd": "", |
377 | 377 | "console": "externalTerminal", |
378 | | - "env": null, |
| 378 | + "env": {}, |
379 | 379 | "envFile": "$${{workspaceRoot}}/.env", |
380 | 380 | "debugOptions": [ |
381 | 381 | "WaitOnAbnormalExit", |
|
398 | 398 | "runserver", |
399 | 399 | "--noreload" |
400 | 400 | ], |
401 | | - "env": null, |
| 401 | + "env": {}, |
402 | 402 | "envFile": "$${{workspaceRoot}}/.env", |
403 | 403 | "debugOptions": [ |
404 | 404 | "WaitOnAbnormalExit", |
|
447 | 447 | "program": "$${{workspaceRoot}}/run.py", |
448 | 448 | "cwd": "$${{workspaceRoot}}", |
449 | 449 | "args": [], |
450 | | - "env": null, |
| 450 | + "env": {}, |
451 | 451 | "envFile": "$${{workspaceRoot}}/.env", |
452 | 452 | "debugOptions": [ |
453 | 453 | "WaitOnAbnormalExit", |
|
472 | 472 | "runserver", |
473 | 473 | "--noreload=True" |
474 | 474 | ], |
475 | | - "env": null, |
| 475 | + "env": {}, |
476 | 476 | "envFile": "$${{workspaceRoot}}/.env", |
477 | 477 | "debugOptions": [ |
478 | 478 | "WaitOnAbnormalExit", |
|
546 | 546 | }, |
547 | 547 | "cwd": { |
548 | 548 | "type": "string", |
549 | | - "description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave null).", |
550 | | - "default": null |
| 549 | + "description": "Absolute path to the working directory of the program being debugged. Default is the root directory of the file (leave empty).", |
| 550 | + "default": "" |
551 | 551 | }, |
552 | 552 | "debugOptions": { |
553 | 553 | "type": "array", |
|
604 | 604 | "env": { |
605 | 605 | "type": "object", |
606 | 606 | "description": "Environment variables defined as a key value pair. Property ends up being the Environment Variable and the value of the property ends up being the value of the Env Variable.", |
607 | | - "default": null |
| 607 | + "default": {} |
608 | 608 | }, |
609 | 609 | "envFile": { |
610 | 610 | "type": "string", |
611 | 611 | "description": "Absolute path to a file containing environment variable definitions.", |
612 | | - "default": null |
| 612 | + "default": "" |
613 | 613 | } |
614 | 614 | } |
615 | 615 | }, |
|
627 | 627 | "remoteRoot": { |
628 | 628 | "type": "string", |
629 | 629 | "description": "The source root of the remote host.", |
630 | | - "default": null |
| 630 | + "default": "" |
631 | 631 | }, |
632 | 632 | "port": { |
633 | 633 | "type": "number", |
634 | 634 | "description": "Debug port to attach", |
635 | | - "default": null |
| 635 | + "default": 0 |
636 | 636 | }, |
637 | 637 | "host": { |
638 | 638 | "type": "string", |
|
655 | 655 | "pythonPath": "${config:python.pythonPath}", |
656 | 656 | "program": "${file}", |
657 | 657 | "cwd": "${workspaceRoot}", |
658 | | - "env": null, |
| 658 | + "env": {}, |
659 | 659 | "envFile": "${workspaceRoot}/.env", |
660 | 660 | "debugOptions": [ |
661 | 661 | "WaitOnAbnormalExit", |
|
679 | 679 | }, |
680 | 680 | "program": "${file}", |
681 | 681 | "cwd": "${workspaceRoot}", |
682 | | - "env": null, |
| 682 | + "env": {}, |
683 | 683 | "envFile": "${workspaceRoot}/.env", |
684 | 684 | "debugOptions": [ |
685 | 685 | "WaitOnAbnormalExit", |
|
695 | 695 | "pythonPath": "${config:python.pythonPath}", |
696 | 696 | "module": "module.name", |
697 | 697 | "cwd": "${workspaceRoot}", |
698 | | - "env": null, |
| 698 | + "env": {}, |
699 | 699 | "envFile": "${workspaceRoot}/.env", |
700 | 700 | "debugOptions": [ |
701 | 701 | "WaitOnAbnormalExit", |
|
710 | 710 | "stopOnEntry": true, |
711 | 711 | "pythonPath": "${config:python.pythonPath}", |
712 | 712 | "program": "${file}", |
713 | | - "cwd": null, |
| 713 | + "cwd": "", |
714 | 714 | "console": "integratedTerminal", |
715 | | - "env": null, |
| 715 | + "env": {}, |
716 | 716 | "envFile": "${workspaceRoot}/.env", |
717 | 717 | "debugOptions": [ |
718 | 718 | "WaitOnAbnormalExit", |
|
726 | 726 | "stopOnEntry": true, |
727 | 727 | "pythonPath": "${config:python.pythonPath}", |
728 | 728 | "program": "${file}", |
729 | | - "cwd": null, |
| 729 | + "cwd": "", |
730 | 730 | "console": "externalTerminal", |
731 | | - "env": null, |
| 731 | + "env": {}, |
732 | 732 | "envFile": "${workspaceRoot}/.env", |
733 | 733 | "debugOptions": [ |
734 | 734 | "WaitOnAbnormalExit", |
|
747 | 747 | "runserver", |
748 | 748 | "--noreload" |
749 | 749 | ], |
750 | | - "env": null, |
| 750 | + "env": {}, |
751 | 751 | "envFile": "${workspaceRoot}/.env", |
752 | 752 | "debugOptions": [ |
753 | 753 | "WaitOnAbnormalExit", |
|
788 | 788 | "program": "${workspaceRoot}/run.py", |
789 | 789 | "cwd": "${workspaceRoot}", |
790 | 790 | "args": [], |
791 | | - "env": null, |
| 791 | + "env": {}, |
792 | 792 | "envFile": "${workspaceRoot}/.env", |
793 | 793 | "debugOptions": [ |
794 | 794 | "WaitOnAbnormalExit", |
|
803 | 803 | "stopOnEntry": true, |
804 | 804 | "pythonPath": "${config:python.pythonPath}", |
805 | 805 | "cwd": "${workspaceRoot}", |
806 | | - "env": null, |
| 806 | + "env": {}, |
807 | 807 | "envFile": "${workspaceRoot}/.env", |
808 | 808 | "args": [ |
809 | 809 | "${workspaceRoot}/development.ini" |
|
828 | 828 | "runserver", |
829 | 829 | "--noreload=True" |
830 | 830 | ], |
831 | | - "env": null, |
| 831 | + "env": {}, |
832 | 832 | "envFile": "${workspaceRoot}/.env", |
833 | 833 | "debugOptions": [ |
834 | 834 | "WaitOnAbnormalExit", |
|
0 commit comments