eolas-db/.vscode/launch.json

19 lines
335 B
JSON
Raw Permalink Normal View History

2025-12-21 15:15:24 +00:00
{
"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"
}
]
}