summaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2023-03-15 20:04:03 +0100
committerAlexandre Flament <alex@al-f.net>2023-03-21 20:58:13 +0000
commit7b711cb15d11ca9f090ca06c909eab57adf5c316 (patch)
tree0f44b925b942d442c35a29d261df1960027aa737 /.vscode/tasks.json
parent9dc36965bbb118db64c0bf2d3f54389d4d484670 (diff)
downloadsearxng-7b711cb15d11ca9f090ca06c909eab57adf5c316.tar.gz
searxng-7b711cb15d11ca9f090ca06c909eab57adf5c316.zip
Add GitHub Codespaces configuration
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 000000000..4d4a57b80
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,36 @@
+{
+ // 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"
+ }
+ }
+ ]
+} \ No newline at end of file