Created
February 15, 2024 21:24
-
-
Save serrodcal/286a6b236406f1aebcb402fd76c8d97d to your computer and use it in GitHub Desktop.
launch.json for debugging WSO2 MI from VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// path: .vscode/launch.json | |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "java", | |
"name": "Debug (Attach)", | |
"projectName": "WSO2 MI 4.2.0", | |
"request": "attach", | |
"hostName": "localhost", | |
"port": 5005 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment