Sorry for the dumb question...
I can debug other python apps fine. I have py4web launching from VS Code using the launch.json file described below. But my break points in the examples apps (in models.py and controllers.py) are ignored. What am I missing?
"configurations": [
{
"name": "py4web",
"type": "python",
"request": "launch",
"python": "c:/Python39/python.exe",
"program": "D:/Andrew/github/py4web/py4web.py",
"args": ["run","D:/Andrew/github/py4web/apps"],
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"justMyCode": true
}
]