--host がなかった。
調べてたら結構時間がかかったげど
すごいな
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload",
"--host",
"0.0.0.0",
"--port",
"8000"
],
"env": {
"PYTHONPATH": "${workspaceFolder}"
},
"justMyCode": false,
"pythonPath": "${config:python.pythonPath}",
}
]
}