hampbot/.vscode/launch.json

21 lines
647 B
JSON
Raw Normal View History

2023-08-18 20:22:20 -07:00
{
// 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 Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "main.go",
"envFile": "${workspaceFolder}/.env",
"args": [
"-ldflags",
"\"-X github.com/jackmerrill/hampbot/internal/utils/config.Version=dev -X github.com/jackmerrill/hampbot/internal/utils/config.Build=$(date -u +.%Y%m%d.%H%M%S)\""
]
}
]
}