Initial Spec done. More work to do. Need to bring in Argitek designs

This commit is contained in:
2025-01-08 23:45:53 +02:00
parent 7ce04e2032
commit f284e55a5c
22 changed files with 2150 additions and 2 deletions

27
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "${workspaceFolder}/bin",
"program": "${workspaceFolder}/cmd/testserver/main.go",
"args": [
"-o","${workspaceFolder}/bin/debug_bin"
],
"windows": {
"args": [
"-o","${workspaceFolder}/bin/debug_bin.exe"
],
},
"env": {
"CGO_ENABLED": "0"
}
}
]
}

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

@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "go",
"label": "go: build workspace",
"command": "build",
"options": {
"env": {
"CGO_ENABLED": "0"
},
"cwd": "${workspaceFolder}/bin",
},
"args": [
"../..."
],
"problemMatcher": [
"$go"
],
"group": "build",
},
{
"type": "go",
"label": "go: test workspace",
"command": "test",
"options": {
"env": {
"CGO_ENABLED": "0"
},
"cwd": "${workspaceFolder}/bin",
},
"args": [
"../..."
],
"problemMatcher": [
"$go"
],
"group": "build",
},
]
}