mealie/.vscode/tasks.json
Hayden 1af0f426ae
fix: remove deprecated lifecycle and consolidate startup actions (#3311)
* remove deprecated lifecycle and consolidate startup actions

* fix import
2024-03-14 19:27:26 +00:00

58 lines
1.1 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Production: Build and Start Docker Compose",
"command": "task docker:prod",
"type": "shell",
"args": [],
"problemMatcher": [
"$tsc"
],
"presentation": {
"reveal": "always"
},
"group": "test"
},
{
"label": "Dev: Start Backend",
"command": "task py",
"type": "shell",
"presentation": {
"reveal": "always",
"group": "groupA"
},
"problemMatcher": []
},
{
"label": "Dev: Start Frontend",
"command": "task ui",
"type": "shell",
"presentation": {
"reveal": "always",
"group": "groupA"
},
"problemMatcher": []
},
{
"label": "Dev: Start Docs Server",
"command": "task docs",
"type": "shell",
"presentation": {
"reveal": "always",
"group": "groupA"
},
"problemMatcher": []
},
{
"label": "Run python tests",
"command": "task py:test",
"type": "shell",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
}
]
}