From 811338d058749081d3faf9e4cd9bfbf1a97a83a9 Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Wed, 27 Jun 2018 10:12:13 -0400 Subject: no bug - Add VS Code task configuration file --- .vscode/tasks.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .vscode/tasks.json (limited to '.vscode') diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..c15d7a457 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,45 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "Vagrant: Start Local Server", + "type": "shell", + "command": "vagrant up", + "group": "none", + "problemMatcher": [] + }, + { + "label": "Vagrant: Suspend Local Server", + "type": "shell", + "command": "vagrant suspend", + "group": "none", + "problemMatcher": [] + }, + { + "label": "Vagrant: Update Local Server", + "type": "shell", + "command": "vagrant rsync && vagrant provision --provision-with update", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [] + }, + { + "label": "Vagrant: Force Update Local Server", + "type": "shell", + "command": "vagrant rsync && vagrant provision", + "group": "build", + "problemMatcher": [] + }, + { + "label": "Vagrant: Update Perl Dependencies", + "type": "shell", + "command": "vagrant ssh web -c bmo-refresh-bundle", + "group": "none", + "problemMatcher": [] + } + ] +} -- cgit v1.2.3-24-g4f1b