gitignore del vscode

This commit is contained in:
2025-05-28 14:25:59 +08:00
parent 79e1ba2616
commit 8e4a0d3dac
2 changed files with 24 additions and 4 deletions

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

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}",
"args": []
},
{
"name": "调试API服务",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/app/main/api/main.go",
"args": ["-f", "etc/main.dev.yaml"],
"env": {
"ENV": "development"
}
}
]
}