- Languages
- Go
Go
Lade officially supports deploying Go applications.
Supported Versions
The following Go versions are supported and receive security updates:
- 1.23
- 1.22
Supported Package Managers
The following package managers are supported:
Go App Detection
Lade detects your app as a Go app if one of the following files is present in the root directory:
- A
Gopkg.toml
file to be managed by dep - A
glide.yaml
file to be managed by glide - A
Godeps/Godeps.json
file to be managed by godep - A
go.mod
file to be managed by go modules - A
vendor/vendor.json
file to be managed by govendor
Specifying a Go Version
You can specify the Go version for compiling your code in your go.mod
file:
go 1.22