SXXXXXXX_FlightMonitor/.vscode/launch.json

21 lines
648 B
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": "aircraft db",
"type": "debugpy",
"request": "launch",
"module": "flightmonitor.data.aircraft_database_manager",
"cwd": "${workspaceFolder}"
},
{
"name": "flight monitor",
"type": "debugpy",
"request": "launch",
"module": "flightmonitor"
}
]
}