amarillo-gtfs-generator/.vscode/launch.json
2024-05-23 13:10:15 +02:00

39 lines
1.2 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": {
"admin_token": "supersecret",
"ride2go_token": "supersecret2"
}
}
]
}