Skip to content

Commit eda56da

Browse files
committed
chore: add VS Code debugging launch config
1 parent 5eee0bd commit eda56da

2 files changed

Lines changed: 14 additions & 3 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,3 @@ target/
2828
build/
2929
!**/src/main/**/build/
3030
!**/src/test/**/build/
31-
32-
### VS Code ###
33-
.vscode/

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "java",
5+
"name": "Spring Boot (Debug)",
6+
"request": "launch",
7+
"cwd": "${workspaceFolder}",
8+
"console": "internalConsole",
9+
"mainClass": "ar.com.nanotaboada.java.samples.spring.boot.Application",
10+
"projectName": "java.samples.spring.boot",
11+
"args": "--spring.profiles.active=local"
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)