25 lines
675 B
JSON
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
|
|
},
|
|
|
|
]
|
|
} |