cli-utils/.vscode/launch.json
2025-08-15 20:33:36 -04:00

21 lines
703 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": "Get Coinbase Token",
"type": "debugpy",
"request": "launch",
"console": "integratedTerminal",
"python": "/home/oleg/.pyenv/python3.12-venv/bin/python3.12",
"env": {
"PYTHONPATH": "${workspaceFolder}/.."
},
"program": "${workspaceFolder}/coinbase/get_futures_list.py",
"args": [
]
}
]
}