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 Debuggingfrom Debug menu OR pressingF5) - Update
launch.jsonwith- Update program path -
"program": "${workspaceRoot}/app", - Add arguments -
"args": ["run", "--envprofile", "dev"],
- Update program path -
- Put breakpoints wherever needed
- Run
aah build - Press
F5or clickStart Debuggingfrom Debug menu - That's it 😃