{ // 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('dashboard.Rmd', shiny_args = list(host = '127.0.0.1', port = 1234))\"" ], "group": { "kind": "test", "isDefault": true } } ] }