Title: Debbuging Application Desc: This page documents details debugging tools and its details for aah application. Keywords: debugging, delve, aah, aah application, vscode, code
Steps to Accomplish:
- Create
launch.json
(happens when clickingStart Debugging
from Debug menu OR pressingF5
) - Update
launch.json
with- Update program path -
"program": "${workspaceRoot}/app",
- Add arguments -
"args": ["run", "--envprofile", "dev"],
- Update program path -
- Put breakpoints wherever needed
- Run
aah build
- Press
F5
or clickStart Debugging
from Debug menu - That's it 😃