bigquery-etl/.vscode/launch.json.default

28 строки
666 B
Plaintext

{
"version": "0.2.0",
"configurations": [
{
"name": "bqetl",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/venv/bin/bqetl",
"args": "${input:args}",
"justMyCode": true
},
{
"name": "Python: current file",
"type": "python",
"request": "launch",
"program": "${file}",
"args": "${input:args}",
"justMyCode": true
}
],
"inputs": [
{
"id": "args",
"type": "promptString",
"description": "args"
}
]
}