mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-11-04 12:40:22 -08:00
1af0f426ae
* remove deprecated lifecycle and consolidate startup actions * fix import
58 lines
1.1 KiB
JSON
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": []
|
|
}
|
|
]
|
|
}
|