Files
2025-11-30 12:32:43 -05:00

30 lines
810 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "echo Hello",
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": false
}
},
{
"label": "Run Shiny RMD",
"type": "shell",
"command": "Rscript",
"args": [
"-e",
"\"rmarkdown::run('app/dashboard.Rmd', shiny_args = list(host = '127.0.0.1', port = 1234))\""
],
"group": {
"kind": "test",
"isDefault": true
}
}
]
}