mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
28 lines
625 B
JSON
28 lines
625 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "DEV: Build and Start Docker Compose",
|
|
"command": "./dev/scripts/docker-compose.dev.sh",
|
|
"type": "shell",
|
|
"args": [],
|
|
"problemMatcher": ["$tsc"],
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"group": "test"
|
|
},
|
|
{
|
|
"label": "Production: Build and Start Docker Compose",
|
|
"command": "./dev/scripts/docker-compose.sh",
|
|
"type": "shell",
|
|
"args": [],
|
|
"problemMatcher": ["$tsc"],
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"group": "test"
|
|
}
|
|
]
|
|
}
|