Files
f.bosin.ch/.vscode/tasks.json
2023-08-18 20:47:03 +02:00

30 lines
828 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build & Deploy",
"type": "shell",
"command": "npm run build && rsync -arzP --progress --delete-after --force --update --inplace --times ./build ./package.json ./package-lock.json root@f.bosin.ch:/home/sveltekit"
},
{
"label": "Restart Server",
"type": "shell",
"command": "ssh f.bosin.ch systemctl restart bosin-files"
},
{
"label": "Full Deploy",
"dependsOn": [
"Build & Deploy"
],
"type": "shell",
"command": "ssh f.bosin.ch systemctl restart bosin-files",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}