package
Version:
v0.28.0
Opens a new window with list of versions in this module.
Published: Dec 4, 2022
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 5
Opens a new window with list of known importers.
Documentation
¶
type Build struct {
Include []string `toml:"include"`
Exclude []string `toml:"exclude"`
Buildpacks []Buildpack `toml:"buildpacks"`
Env []EnvVar `toml:"env"`
Builder string `toml:"builder"`
}
type Buildpack struct {
ID string `toml:"id"`
Version string `toml:"version"`
URI string `toml:"uri"`
Script Script `toml:"script"`
}
type Descriptor struct {
Project Project `toml:"project"`
Build Build `toml:"build"`
Metadata map[string]interface{} `toml:"metadata"`
SchemaVersion *api.Version
}
type EnvVar struct {
Name string `toml:"name"`
Value string `toml:"value"`
}
type License struct {
Type string `toml:"type"`
URI string `toml:"uri"`
}
type Project struct {
Name string `toml:"name"`
Version string `toml:"version"`
SourceURL string `toml:"source-url"`
Licenses []License `toml:"licenses"`
}
type Script struct {
API string `toml:"api"`
Inline string `toml:"inline"`
Shell string `toml:"shell"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.