chore(project):增加版本库文件屏蔽,加入运行配置。

This commit is contained in:
徐涛
2022-09-15 09:05:38 +08:00
parent a8430e012f
commit a3a00d162a
2 changed files with 20 additions and 0 deletions

1
.gitignore vendored
View File

@@ -180,3 +180,4 @@ fabric.properties
# Block sensitive configuration files
settings.local.yaml
log/
__debug_bin

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

@@ -0,0 +1,19 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Service",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "${workspaceFolder}",
"program": "${workspaceRoot}/main.go",
"args": [
"-tag=jsoniter"
]
}
]
}