trepa/.devcontainer/devcontainer.json
qpismont 2445b82395
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/tests Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
Update golangci-lint version to 2.1.2 and adjust CI lint command for improved performance.
2025-04-17 21:21:04 +00:00

27 lines
No EOL
627 B
JSON

{
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,Z",
"build": {
"dockerfile": "Dockerfile",
"args": {
"GO_VERSION": "1.24.2",
"GOLANGCI_LINT_VERSION": "2.1.2",
"MIGRATE_VERSION": "4.18.2",
"AIR_VERSION": "1.61.7"
}
},
"customizations": {
"vscode": {
"extensions": [
"golang.go"
]
}
},
"runArgs": [
"--network=dev-network",
"--name=trepa-dev"
],
"forwardPorts": [
3000
]
}