depurada la conexion
This commit is contained in:
5
.vscode/settings.json
vendored
Normal file
5
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"task.allowAutomaticTasks": "on",
|
||||
"task.autoDetect": "on",
|
||||
"task.quickOpen.showAll": true
|
||||
}
|
||||
60
.vscode/tasks.json
vendored
Normal file
60
.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user