mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-23 20:13:21 +03:00
48 lines
958 B
JSON
48 lines
958 B
JSON
|
{
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "up",
|
||
|
"command": "${workspaceFolder}/.vscode/up.sh",
|
||
|
"type": "shell",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}/infra/dev/"
|
||
|
},
|
||
|
"presentation": {
|
||
|
"reveal": "always",
|
||
|
"panel": "new",
|
||
|
"focus": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "clean",
|
||
|
"command": "${workspaceFolder}/.vscode/clean.sh",
|
||
|
"type": "shell",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}/infra/dev/"
|
||
|
},
|
||
|
"presentation": {
|
||
|
"reveal": "always",
|
||
|
"panel": "new",
|
||
|
"focus": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "logs",
|
||
|
"command": "docker-compose",
|
||
|
"args": [
|
||
|
"logs",
|
||
|
"-f"
|
||
|
],
|
||
|
"type": "shell",
|
||
|
"options": {
|
||
|
"cwd": "${workspaceFolder}/infra/dev/"
|
||
|
},
|
||
|
"presentation": {
|
||
|
"reveal": "always",
|
||
|
"panel": "new",
|
||
|
"focus": true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|