21 lines
475 B
JSON
21 lines
475 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python Debugger: FastAPI",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"args": [
|
|
"aiws:app",
|
|
"--reload",
|
|
"--port",
|
|
"8090",
|
|
"--host",
|
|
"0.0.0.0"
|
|
],
|
|
"jinja": true,
|
|
"justMyCode": true
|
|
}
|
|
]
|
|
} |