Skip to content

Instantly share code, notes, and snippets.

@robertdown
Created September 20, 2021 06:11
Show Gist options
  • Save robertdown/978ae234495a1fbf15605f1400f26405 to your computer and use it in GitHub Desktop.
Save robertdown/978ae234495a1fbf15605f1400f26405 to your computer and use it in GitHub Desktop.
{
// For use when you are using remote connection in VSCode and
// are connected to your docker instance
"version": "2.0.0",
"tasks": [
{
"label": "Report PSR12 code styling issues",
"type": "shell",
"command": "/root/devtools psr12-report"
},
{
"label": "Fix PSR12 code styling issues",
"type": "shell",
"command": "/root/devtools psr12-fix"
},
{
"label": "Report Theme Style Issues",
"type": "shell",
"command": "/root/devtools lint-themes-report"
},
{
"label": "Fix Theme Style Issues",
"type": "shell",
"command": "/root/devtools lint-themes-fix"
},
{
"label": "Check PHP Parsing errors",
"type": "shell",
"command": "/root/devtools php-parserror"
},
{
"label": "Run unit testing",
"type": "shell",
"command": "/root/devtools unit-test"
},
{
"label": "Run API Test",
"type": "shell",
"command": "/root/devtools api-test"
},
{
"label": "Run e2e Test",
"type": "shell",
"command": "/root/devtools e2e-test",
"problemMatcher": []
},
{
"label": "Run Services Test",
"type": "shell",
"command": "/root/devtools services-test"
},
{
"label": "Run Fixtures Test",
"type": "shell",
"command": "/root/devtools fixtures-test"
},
{
"label": "Run Validators Test",
"type": "shell",
"command": "/root/devtools validators-test"
},
{
"label": "Run Controllers Test",
"type": "shell",
"command": "/root/devtools controllers-test"
},
{
"label": "Run Common Test",
"type": "shell",
"command": "/root/devtools common-test"
},
{
"label": "Run Entire Dev Suite",
"type": "shell",
"command": "/root/devtools clean-sweep-tests"
},
{
"label": "Reset OpenEMR",
"type": "shell",
"command": "/root/devtools dev-reset"
},
{
"label": "Reset and Reinstall OpenEMR",
"type": "shell",
"command": "/root/devtools dev-reset-install"
},
{
"label": "Reset and Reinstall OpenEMR with Demo Data",
"type": "shell",
"command": "/root/devtools dev-reset-install-demodata"
},
{
"label": "Create Backup Snapshot",
"type": "shell",
"command": "/root/devtools backup example"
},
{
"label": "Restore from Snapshot",
"type": "shell",
"command": "/root/devtools restore example"
},
{
"label": "List Snaphsots",
"type": "shell",
"command": "/root/devtools list-snapshots"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment