Co-authored-by: Márcio Fernandes <marcio.fernandes@outlook.pt> Reviewed-on: #1
26 lines
649 B
JSON
26 lines
649 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "debug",
|
|
"type": "shell",
|
|
"command": "RUN_ENV=dev ./scripts/run-dev.sh",
|
|
"problemMatcher": [],
|
|
"detail": "Runs the container with environment from .env"
|
|
},
|
|
{
|
|
"label": "build: debug",
|
|
"type": "shell",
|
|
"command": "BUILD_ENV=dev ./scripts/build.sh",
|
|
"problemMatcher": [],
|
|
"detail": "Builds docker image with debug requirements"
|
|
},
|
|
{
|
|
"label": "build: production",
|
|
"type": "shell",
|
|
"command": "./scripts/build.sh",
|
|
"problemMatcher": [],
|
|
"detail": "Builds docker image for productions"
|
|
}
|
|
]
|
|
} |