Byparr/.vscode/launch.json

19 lines
572 B
JSON
Raw Normal View History

2024-07-24 13:57:40 +00:00
{
"configurations": [
{
2024-11-26 17:43:25 +00:00
"console": "integratedTerminal",
2024-07-24 13:57:40 +00:00
"env": {
2024-11-26 17:43:25 +00:00
"LOG_LEVEL": "DEBUG"
2024-07-24 13:57:40 +00:00
},
"justMyCode": false,
2024-11-26 17:43:25 +00:00
"name": "Python Debugger: Main",
"program": "main.py",
2024-07-24 13:57:40 +00:00
"request": "launch",
2024-11-26 17:43:25 +00:00
"type": "debugpy"
},
],
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0"
2024-07-24 13:57:40 +00:00
}