depurada la conexion

This commit is contained in:
2025-06-11 23:10:00 -06:00
parent 2dc118dc19
commit 7f4bfff8cb
8 changed files with 214 additions and 69 deletions

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"task.allowAutomaticTasks": "on",
"task.autoDetect": "on",
"task.quickOpen.showAll": true
}

60
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,60 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "planilla-api",
"type": "shell",
"command": "make api",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-mcp",
"type": "shell",
"command": "make mcp",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-ui",
"type": "shell",
"command": "make UI",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-agent",
"type": "shell",
"command": "make agent",
"problemMatcher": [],
"presentation": {
"panel": "dedicated",
"reveal": "always"
}
},
{
"label": "planilla-dev",
"dependsOn": [
"planilla-api",
"planilla-mcp",
"planilla-ui",
"planilla-agent"
],
"dependsOrder": "parallel",
"problemMatcher": [],
"presentation": {
"reveal": "always"
}
}
]
}