From 03c0643ae71f3dda967430bd38bc99d04b823253 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 21 Dec 2025 15:15:24 +0000 Subject: [PATCH] chore: add debugger launch script --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b549711 --- /dev/null +++ b/.vscode/launch.json @@ -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" + } + ] +}