Skip to content

Commit

Permalink
Merge branch 'main' into feat/57/improve-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyRae committed Feb 4, 2025
2 parents 211147e + 90f6465 commit 0972e6c
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,33 @@
"name": "Bunny Daemon",
"type": "debugpy",
"request": "launch",
"module": "hutch_bunny.daemon"
"module": "hutch_bunny.daemon",
"justMyCode": true,
"console": "integratedTerminal"
},
{
"name": "Bunny CLI",
"name": "Bunny CLI Availability",
"type": "debugpy",
"request": "launch",
"module": "hutch_bunny.cli",
"args": [
"--body",
"tests/queries/availability.json",
]
],
"justMyCode": true,
"console": "integratedTerminal"
},
{
"name": "Bunny CLI Distribution",
"type": "debugpy",
"request": "launch",
"module": "hutch_bunny.cli",
"args": [
"--body",
"tests/queries/distribution.json",
],
"justMyCode": true,
"console": "integratedTerminal"
}
]
}

0 comments on commit 0972e6c

Please sign in to comment.