Skip to content

Commit 6d03f7b

Browse files
authored
Merge pull request #10 from tschaub/version
Add --version flag
2 parents 8bdd62f + 353efe7 commit 6d03f7b

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

main.go

+20-8
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,32 @@ import (
1212
"github.com/tschaub/stash/internal/proxy"
1313
)
1414

15+
var (
16+
// set by goreleaser
17+
version = "development"
18+
)
19+
1520
func main() {
16-
ctx := kong.Parse(&Stash{}, kong.UsageOnError())
21+
ctx := kong.Parse(
22+
&Stash{},
23+
kong.UsageOnError(),
24+
kong.Vars{
25+
"version": version,
26+
},
27+
)
1728
err := ctx.Run()
1829
ctx.FatalIfErrorf(err)
1930
}
2031

2132
type Stash struct {
22-
Port int `help:"Listen on this port." default:"9999" env:"STASH_PORT"`
23-
Dir string `help:"Path to cache directory" type:"path" default:".stash" env:"STASH_DIR"`
24-
Hosts []string `help:"Cache responses from these hosts" env:"STASH_HOSTS"`
25-
CertFile string `help:"Path to CA certificate file" type:"existingfile" required:"" env:"STASH_CERT_FILE"`
26-
KeyFile string `help:"Path to CA private key file" type:"existingfile" required:"" env:"STASH_KEY_FILE"`
27-
LogLevel string `help:"Log level" enum:"debug,info,warn,error" default:"info" env:"STASH_LOG_LEVEL"`
28-
LogFormat string `help:"Log format" enum:"text,json" default:"text" env:"STASH_LOG_FORMAT"`
33+
Port int `help:"Listen on this port." default:"9999" env:"STASH_PORT"`
34+
Dir string `help:"Path to cache directory" type:"path" default:".stash" env:"STASH_DIR"`
35+
Hosts []string `help:"Cache responses from these hosts" env:"STASH_HOSTS"`
36+
CertFile string `help:"Path to CA certificate file" type:"existingfile" required:"" env:"STASH_CERT_FILE"`
37+
KeyFile string `help:"Path to CA private key file" type:"existingfile" required:"" env:"STASH_KEY_FILE"`
38+
LogLevel string `help:"Log level" enum:"debug,info,warn,error" default:"info" env:"STASH_LOG_LEVEL"`
39+
LogFormat string `help:"Log format" enum:"text,json" default:"text" env:"STASH_LOG_FORMAT"`
40+
Version kong.VersionFlag `help:"Print the version and exit."`
2941
}
3042

3143
func (s *Stash) Run() error {

0 commit comments

Comments
 (0)