mirror of
https://git.imnavajas.es/jjimenez/printhub.git
synced 2026-01-13 00:48:48 +00:00
modificado para crear tasks que recompilen todo
This commit is contained in:
29
.vscode/tasks.json
vendored
Normal file
29
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Run Spring Boot in Docker with Debug",
|
||||
"type": "process",
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"exec",
|
||||
"-it",
|
||||
"springboot-dev",
|
||||
"./mvnw",
|
||||
"spring-boot:run",
|
||||
"-Dspring-boot.run.jvmArguments=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
|
||||
],
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Stop Spring Boot in Docker",
|
||||
"type": "shell",
|
||||
"command": "docker exec springboot-dev pkill -f spring-boot:run",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user