-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.json
More file actions
25 lines (25 loc) · 801 Bytes
/
launch.json
File metadata and controls
25 lines (25 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: main",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/main.py",
"console": "integratedTerminal",
"args": [],
"env": {},
"cwd": "${workspaceFolder}",
"preLaunchTask": "",
"postDebugTask": "",
"python": "python3", // Adjust if needed
"console": "integratedTerminal",
"output": "${workspaceFolder}/output.log",
"envFile": "${workspaceFolder}/.env",
"console": "externalTerminal", // Use external terminal for command output
"args": [
"2>/dev/null"
] // Add this line
}
]
}