You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+50-6Lines changed: 50 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -282,6 +282,8 @@
282
282
"pythonPath": "$${{config.python.pythonPath}}",
283
283
"program": "$${{file}}",
284
284
"cwd": "$${{workspaceRoot}}",
285
+
"env": null,
286
+
"envFile": "$${{workspaceRoot}}.env",
285
287
"debugOptions": [
286
288
"WaitOnAbnormalExit",
287
289
"WaitOnNormalExit",
@@ -308,6 +310,8 @@
308
310
},
309
311
"program": "$${{file}}",
310
312
"cwd": "$${{workspaceRoot}}",
313
+
"env": null,
314
+
"envFile": "$${{workspaceRoot}}.env",
311
315
"debugOptions": [
312
316
"WaitOnAbnormalExit",
313
317
"WaitOnNormalExit",
@@ -326,6 +330,8 @@
326
330
"pythonPath": "$${{config.python.pythonPath}}",
327
331
"module": "module.name",
328
332
"cwd": "$${{workspaceRoot}}",
333
+
"env": null,
334
+
"envFile": "$${{workspaceRoot}}.env",
329
335
"debugOptions": [
330
336
"WaitOnAbnormalExit",
331
337
"WaitOnNormalExit",
@@ -345,6 +351,8 @@
345
351
"program": "$${{file}}",
346
352
"cwd": "null",
347
353
"console": "integratedTerminal",
354
+
"env": null,
355
+
"envFile": "$${{workspaceRoot}}.env",
348
356
"debugOptions": [
349
357
"WaitOnAbnormalExit",
350
358
"WaitOnNormalExit"
@@ -363,6 +371,8 @@
363
371
"program": "${{file}}",
364
372
"cwd": "null",
365
373
"console": "externalTerminal",
374
+
"env": null,
375
+
"envFile": "$${{workspaceRoot}}.env",
366
376
"debugOptions": [
367
377
"WaitOnAbnormalExit",
368
378
"WaitOnNormalExit"
@@ -384,6 +394,8 @@
384
394
"runserver",
385
395
"--noreload"
386
396
],
397
+
"env": null,
398
+
"envFile": "$${{workspaceRoot}}.env",
387
399
"debugOptions": [
388
400
"WaitOnAbnormalExit",
389
401
"WaitOnNormalExit",
@@ -411,6 +423,7 @@
411
423
"--no-debugger",
412
424
"--no-reload"
413
425
],
426
+
"envFile": "$${{workspaceRoot}}.env",
414
427
"debugOptions": [
415
428
"WaitOnAbnormalExit",
416
429
"WaitOnNormalExit",
@@ -430,6 +443,8 @@
430
443
"program": "$${{workspaceRoot}}/run.py",
431
444
"cwd": "$${{workspaceRoot}}",
432
445
"args": [],
446
+
"env": null,
447
+
"envFile": "$${{workspaceRoot}}.env",
433
448
"debugOptions": [
434
449
"WaitOnAbnormalExit",
435
450
"WaitOnNormalExit",
@@ -453,6 +468,8 @@
453
468
"runserver",
454
469
"--noreload=True"
455
470
],
471
+
"env": null,
472
+
"envFile": "$${{workspaceRoot}}.env",
456
473
"debugOptions": [
457
474
"WaitOnAbnormalExit",
458
475
"WaitOnNormalExit",
@@ -583,6 +600,11 @@
583
600
"type": "object",
584
601
"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.",
585
602
"default": null
603
+
},
604
+
"envFile": {
605
+
"type": "string",
606
+
"description": "Absolute path to a file containing environment variable definitions.",
607
+
"default": null
586
608
}
587
609
}
588
610
},
@@ -628,6 +650,8 @@
628
650
"pythonPath": "${config.python.pythonPath}",
629
651
"program": "${file}",
630
652
"cwd": "${workspaceRoot}",
653
+
"env": null,
654
+
"envFile": "$${{workspaceRoot}}.env",
631
655
"debugOptions": [
632
656
"WaitOnAbnormalExit",
633
657
"WaitOnNormalExit",
@@ -650,6 +674,8 @@
650
674
},
651
675
"program": "${file}",
652
676
"cwd": "${workspaceRoot}",
677
+
"env": null,
678
+
"envFile": "$${{workspaceRoot}}.env",
653
679
"debugOptions": [
654
680
"WaitOnAbnormalExit",
655
681
"WaitOnNormalExit",
@@ -664,6 +690,8 @@
664
690
"pythonPath": "${config.python.pythonPath}",
665
691
"module": "module.name",
666
692
"cwd": "${workspaceRoot}",
693
+
"env": null,
694
+
"envFile": "$${{workspaceRoot}}.env",
667
695
"debugOptions": [
668
696
"WaitOnAbnormalExit",
669
697
"WaitOnNormalExit",
@@ -679,6 +707,8 @@
679
707
"program": "${file}",
680
708
"cwd": "null",
681
709
"console": "integratedTerminal",
710
+
"env": null,
711
+
"envFile": "$${{workspaceRoot}}.env",
682
712
"debugOptions": [
683
713
"WaitOnAbnormalExit",
684
714
"WaitOnNormalExit"
@@ -693,6 +723,8 @@
693
723
"program": "${file}",
694
724
"cwd": "null",
695
725
"console": "externalTerminal",
726
+
"env": null,
727
+
"envFile": "$${{workspaceRoot}}.env",
696
728
"debugOptions": [
697
729
"WaitOnAbnormalExit",
698
730
"WaitOnNormalExit"
@@ -710,6 +742,8 @@
710
742
"runserver",
711
743
"--noreload"
712
744
],
745
+
"env": null,
746
+
"envFile": "$${{workspaceRoot}}.env",
713
747
"debugOptions": [
714
748
"WaitOnAbnormalExit",
715
749
"WaitOnNormalExit",
@@ -733,6 +767,7 @@
733
767
"--no-debugger",
734
768
"--no-reload"
735
769
],
770
+
"envFile": "$${{workspaceRoot}}.env",
736
771
"debugOptions": [
737
772
"WaitOnAbnormalExit",
738
773
"WaitOnNormalExit",
@@ -748,6 +783,8 @@
748
783
"program": "${workspaceRoot}/run.py",
749
784
"cwd": "${workspaceRoot}",
750
785
"args": [],
786
+
"env": null,
787
+
"envFile": "$${{workspaceRoot}}.env",
751
788
"debugOptions": [
752
789
"WaitOnAbnormalExit",
753
790
"WaitOnNormalExit",
@@ -767,6 +804,8 @@
767
804
"runserver",
768
805
"--noreload=True"
769
806
],
807
+
"env": null,
808
+
"envFile": "$${{workspaceRoot}}.env",
770
809
"debugOptions": [
771
810
"WaitOnAbnormalExit",
772
811
"WaitOnNormalExit",
@@ -794,16 +833,21 @@
794
833
"default": "python",
795
834
"description": "Path to Python, you can use a custom version of Python by modifying this setting to include the full path."
796
835
},
836
+
"python.envFile": {
837
+
"type": "string",
838
+
"description": "Absolute path to a file containing environment variable definitions.",
839
+
"default": null
840
+
},
797
841
"python.jediPath": {
798
842
"type": "string",
799
843
"default": "",
800
844
"description": "Path to directory containing the Jedi library (this path will contain the 'Jedi' sub directory)."
801
845
},
802
-
"python.sortImports.path": {
803
-
"type": "string",
804
-
"description": "Path to isort script, default using inner version",
805
-
"default": ""
806
-
},
846
+
"python.sortImports.path": {
847
+
"type": "string",
848
+
"description": "Path to isort script, default using inner version",
849
+
"default": ""
850
+
},
807
851
"python.sortImports.args": {
808
852
"type": "array",
809
853
"description": "Arguments passed in. Each argument is a separate item in the array.",
0 commit comments