hampbot/.vscode/launch.json
2023-08-18 22:22:20 -05:00

21 lines
647 B
JSON

{
// 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)\""
]
}
]
}