matt_arderne
10/13/2021, 12:23 PMvisch
10/13/2021, 12:24 PMvisch
10/13/2021, 12:25 PMmatt_arderne
10/13/2021, 12:27 PMlaunch.json
file to get it running, maybe missing something obvious, but typically I'd be pointing it at a ./main.py
to run,
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${workspaceRoot}/tap_investing.tap:cli",
"console": "integratedTerminal",
"args": [
"--config",
"config.json"
]
}
]
}
matt_arderne
10/13/2021, 12:44 PMlocal.json
snippet above, and it seems to work fine 😄matt_arderne
10/13/2021, 12:48 PMgit clone <mailto:git@gitlab.com|git@gitlab.com>:DouweM/tap-investing.git
2. cd tap-investing
3. python3 -m venv .tap-investing
4. source .tap-investing/bin/activate
5. pip install git+<https://gitlab.com/DouweM/tap-investing.git>
6. Ensure that you select the venv in VSCode, per screenshot
7. Add the local.json
snippet in the previous comment!
8. Set a breakpoint somewhere in the tap.py
9. Hit F5 to run that debugger!matt_arderne
10/13/2021, 1:42 PMpoetry config virtualenvs.in-project true
Poetry seems great 😄visch
10/13/2021, 3:06 PMaaronsteers
10/13/2021, 3:45 PMmatt_arderne
10/13/2021, 3:57 PMpoetry run tap-confluence --config config.json
in the CLI.. so still some tweaking to refine it the last little bit. Need to better understand what exactly is going on