44 lines
1013 B
JSON
44 lines
1013 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug FastAPI",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"python": "${workspaceFolder}/.venv/bin/python",
|
|
"cwd": "${workspaceFolder}",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"args": [
|
|
"app.main:app",
|
|
"--host",
|
|
"127.0.0.1",
|
|
"--port",
|
|
"8000",
|
|
"--reload"
|
|
],
|
|
"jinja": true,
|
|
"justMyCode": false,
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "Debug FastAPI Without Reload",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "uvicorn",
|
|
"python": "${workspaceFolder}/.venv/bin/python",
|
|
"cwd": "${workspaceFolder}",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"args": [
|
|
"app.main:app",
|
|
"--host",
|
|
"127.0.0.1",
|
|
"--port",
|
|
"8000"
|
|
],
|
|
"jinja": true,
|
|
"justMyCode": false,
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
} |