BodyBalanceEvaluation/.vscode/launch.json
2025-09-29 08:50:59 +08:00

25 lines
675 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Main.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/backend/main.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"args": [
"--host", "0.0.0.0",
"--port", "5000"
],
"justMyCode": false,
"stopOnEntry": false,
"showReturnValue": true,
"redirectOutput": true
},
]
}