prisma actualizado. toma en cuenta las relaciones tareas-planilla y planilla-tareas
This commit is contained in:
26
.vscode/tasks.json
vendored
Normal file
26
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Dev API",
|
||||
"type": "shell",
|
||||
"command": "cd api; npm install; npx nodemon server.js",
|
||||
"problemMatcher": [],
|
||||
"isBackground": true,
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "Dev UI",
|
||||
"type": "shell",
|
||||
"command": "cd ui; npm install; npm run dev",
|
||||
"problemMatcher": [],
|
||||
"isBackground": true,
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "Dev All",
|
||||
"dependsOn": ["Dev API", "Dev UI"],
|
||||
"dependsOrder": "parallel"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user