1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-28 08:06:24 -07:00

Added vscode launch profile

Updated gitignore
This commit is contained in:
comraderat 2020-04-02 00:45:36 +02:00
parent 6b86154ec1
commit 5273ad160a
2 changed files with 21 additions and 1 deletions

4
.gitignore vendored
View file

@ -9,4 +9,6 @@ html/index.html
html/test*
html/javascript/consts.js
templates/override
**/*.bak
**/*.bak
*.log
__debug_bin

18
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
// 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",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd":"${workspaceFolder}",
"program": "${workspaceFolder}/src/",
"env": {},
"args": [],
}
]
}