Files
code-server/deploy-container/rclone-tasks.json
Ben Potter 250971ee18 Containers: Add VS Code tasks and improve overall documentation & flexibility (#12)
* make START_DIR configurable

* fix permissions order

* fix start dir bug

* fix logic

* make START_DIR

* cool loggins

* reuse clone function

* i'm a bash noob

* even more of a bash noob

* add hashed info

* add ability to add tasks

* add vs code instructions for task

* rclone fix

* document vscode tasks

* fix labels

* mention additional variables

* add better docs for dev tools

* support rclone flags
2021-03-15 16:43:45 -04:00

33 lines
663 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "push_remote",
"type": "shell",
"command": "sh /home/coder/push_remote.sh",
"presentation": {
"reveal": "always"
},
"problemMatcher": [],
"options": {
"statusbar": {
"label": "$(repo-push) rclone: push"
}
}
},
{
"label": "pull_remote",
"type": "shell",
"command": "sh /home/coder/pull_remote.sh",
"presentation": {
"reveal": "always"
},
"problemMatcher": [],
"options": {
"statusbar": {
"label": "$(repo-pull) rclone: pull"
}
}
}
]
}