update readme and add .vscode

This commit is contained in:
2025-03-03 10:36:42 +01:00
parent ebc0616ba1
commit 59adc0f698
4 changed files with 115 additions and 0 deletions

23
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"options": {
"cwd": "${workspaceFolder}"
},
"command": "go",
"args": [
"build",
"-tags",
"dev",
"-gcflags",
"all=-N -l",
"-o",
"build/bin/vscode"
],
}
]
}