chore: add debugger launch script

This commit is contained in:
Thomas Bishop 2025-12-21 15:15:24 +00:00
parent 9106f356aa
commit 03c0643ae7

18
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "debugpy",
"request": "launch",
"name": "Run eolas-db",
"program": "${workspaceFolder}/src/app.py",
"args": [
"--source",
"/home/thomas/repos/eolas/zk",
"--target",
"/home/thomas/repos/eolas-db/db"
],
"console": "integratedTerminal"
}
]
}