Files
nextcloud/.vscode/tasks.json
Márcio Fernandes a9e368beb1
All checks were successful
/ continuous-deploy (push) Successful in 23s
- onlyoffice kubernetes resource limits and pvc
- continuous deploy revision
- environments variables validation
- vscode tasks for deploy
- vscode testing some new plugins
2026-04-10 03:21:05 +00:00

19 lines
507 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Apply Infra",
"type": "shell",
"command": "./ops-scripts/apply-infra.sh",
"problemMatcher": [],
},
{
"label": "Apply App",
"type": "shell",
"command": "./ops-scripts/apply-app.sh",
"problemMatcher": []
}
]
}