amarillo-gtfs-generator/.vscode/launch.json

36 lines
1.1 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
// {
// "name": "Debug Tests",
// "type": "debugpy",
// "request": "launch",
// "purpose": ["debug-test"],
// "module": "pytest",
// "console": "integratedTerminal",
// "justMyCode": true,
// "env": {
// "_PYTEST_RAISE": "1"
// },
// },
{
"name": "Python: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"amarillo_gtfs_generator.gtfs_generator:app",
"--workers=1",
"--port=8002"
],
// "preLaunchTask": "enhance",
"jinja": true,
"justMyCode": false,
"env": {}
}
]
}