Git-ignore .vscode/launch.json

This commit is contained in:
Sybren A. Stüvel 2023-07-10 14:10:49 +02:00
parent b58f1e15f1
commit effac1c159
2 changed files with 1 additions and 24 deletions

1
.gitignore vendored

@ -48,3 +48,4 @@ web/project-website/resources/_gen/
# IDE related stuff
*.DS_Store
.vscode/settings.json
.vscode/launch.json

24
.vscode/launch.json vendored

@ -1,24 +0,0 @@
{
// 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": "Manager",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/flamenco-manager",
"cwd": "${workspaceFolder}"
},
{
"name": "Worker",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/flamenco-worker",
"cwd": "${workspaceFolder}"
}
]
}