Intial webserver runtime

This commit is contained in:
2021-01-29 23:19:27 -05:00
parent f17f3d160c
commit 05ad9a50c3
8 changed files with 240 additions and 30 deletions

11
.vscode/launch.json vendored
View File

@@ -2,13 +2,22 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch executable",
"name": "Build & Launch",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "compile",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "Build & Launch - Standalone",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceRoot}/bin/OpenSkins",
"preLaunchTask": "standalone",
"internalConsoleOptions": "openOnSessionStart"
}
]
}

5
.vscode/tasks.json vendored
View File

@@ -30,6 +30,11 @@
"label": "test",
"type": "shell",
"command": "make test"
},
{
"label": "standalone",
"type": "shell",
"command": "make standalone"
}
]
}