BodyBalanceEvaluation/.vscode/launch.json

25 lines
675 B
JSON
Raw Normal View History

2025-07-31 17:23:05 +08:00
{
"version": "0.2.0",
2025-09-29 08:50:59 +08:00
"configurations": [
2025-07-31 17:23:05 +08:00
{
"name": "Debug Main.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/backend/main.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}",
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"args": [
2025-09-29 08:50:59 +08:00
"--host", "0.0.0.0",
"--port", "5000"
2025-07-31 17:23:05 +08:00
],
"justMyCode": false,
"stopOnEntry": false,
"showReturnValue": true,
"redirectOutput": true
},
2025-09-29 08:50:59 +08:00
2025-07-31 17:23:05 +08:00
]
}