mirror of
https://github.com/searxng/searxng
synced 2024-10-30 21:20:28 +00:00
36 lines
955 B
JSON
36 lines
955 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "make run",
|
|
"type": "shell",
|
|
"command": "make run",
|
|
"problemMatcher": [],
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "dedicated"
|
|
},
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "make docs.live",
|
|
"type": "shell",
|
|
"command": "make docs.live",
|
|
"problemMatcher": [],
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "always",
|
|
"panel": "dedicated"
|
|
},
|
|
"group": {
|
|
"kind": "build"
|
|
}
|
|
}
|
|
]
|
|
} |