Debbuging Application
Table of Contents
Debugging with VS Code & Delve
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 😃