mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-06 14:05:21 +02:00
Some checks are pending
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Docker Nightly Production / Backend Server Tests (push) Waiting to run
Docker Nightly Production / Frontend and End-to-End Tests (push) Waiting to run
Docker Nightly Production / Build Tagged Release (push) Blocked by required conditions
Docker Nightly Production / Notify Discord (push) Blocked by required conditions
* remove deprecated lifecycle and consolidate startup actions * fix import
57 lines
1.1 KiB
JSON
57 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": []
|
|
}
|
|
]
|
|
}
|