mirror of
https://git.imnavajas.es/jjimenez/printhub.git
synced 2026-01-13 00:48:48 +00:00
mejorado tema de idiomas y terminado datatable
This commit is contained in:
13
.vscode/launch.json
vendored
13
.vscode/launch.json
vendored
@ -3,12 +3,11 @@
|
||||
"configurations": [
|
||||
{
|
||||
"type": "java",
|
||||
"name": "Debug Spring Boot in Docker",
|
||||
"request": "attach",
|
||||
"hostName": "localhost",
|
||||
"port": 5005,
|
||||
"preLaunchTask": "Start Spring Boot in Docker (Debug)",
|
||||
"postDebugTask": "Stop Spring Boot in Docker"
|
||||
"name": "Debug Spring Boot App",
|
||||
"request": "launch",
|
||||
"mainClass": "com.printhub.printhub.PrintHubApplication",
|
||||
"projectName": "printhub",
|
||||
"vmArgs": "-Dspring.profiles.active=dev"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -1,3 +1,4 @@
|
||||
{
|
||||
"java.compile.nullAnalysis.mode": "automatic"
|
||||
"java.compile.nullAnalysis.mode": "automatic",
|
||||
"java.configuration.updateBuildConfiguration": "interactive"
|
||||
}
|
||||
32
.vscode/tasks.json
vendored
32
.vscode/tasks.json
vendored
@ -1,32 +0,0 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Start Spring Boot in Docker (Debug)",
|
||||
"type": "process",
|
||||
"command": "docker",
|
||||
"args": [
|
||||
"exec",
|
||||
"-i",
|
||||
"springboot-dev",
|
||||
"sh",
|
||||
"-c",
|
||||
"./mvnw spring-boot:run -o -Dmaven.resources.skip=true -Dmaven.test.skip=true -Dspring-boot.run.jvmArguments=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005"
|
||||
],
|
||||
"isBackground": true,
|
||||
"problemMatcher": {
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": ".*",
|
||||
"endsPattern": "Listening for transport dt_socket at address: 5005"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Stop Spring Boot in Docker",
|
||||
"type": "shell",
|
||||
"command": "docker exec springboot-dev pkill -f jdwp=transport",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user