initial commit

This commit is contained in:
2026-07-31 18:35:00 +02:00
commit 395f761870
5 changed files with 208 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
// Copy to .vscode/tasks.json.
"version": "2.0.0",
"tasks": [
{
"label": "Serve",
"type": "shell",
"command": "make serve",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Build Web",
"type": "shell",
"command": "make web",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
}
]
}