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" + } + ] +}