2022-08-09 06:06:32 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
2023-05-12 07:13:48 +00:00
|
|
|
|
|
|
|
// the problemMatchers should prevent vscode from asking how it should check the output
|
|
|
|
|
2022-08-09 06:06:32 +00:00
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
2023-10-01 10:06:34 +00:00
|
|
|
{
|
|
|
|
"label": "worker",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv worker",
|
|
|
|
"problemMatcher": [],
|
|
|
|
},
|
2022-08-09 06:06:32 +00:00
|
|
|
{
|
|
|
|
"label": "clean-settings",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv clean-settings",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "delete-data",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv delete-data",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "migrate",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv migrate",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "server",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv server",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "setup-dev",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv setup-dev",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "setup-test",
|
|
|
|
"type": "shell",
|
2024-02-28 04:04:14 +00:00
|
|
|
"command": "inv setup-test -i --path dev/inventree-demo-dataset",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "superuser",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv superuser",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "test",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv test",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "update",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "inv update",
|
2023-05-12 07:13:48 +00:00
|
|
|
"problemMatcher": [],
|
2022-08-09 06:06:32 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|