Merge branch 'feature/bottin-api-host-flag' into main
This commit is contained in:
commit
573ac4f810
1 changed files with 15 additions and 2 deletions
|
@ -11,6 +11,7 @@ import (
|
|||
|
||||
type Config struct {
|
||||
API APIConfig
|
||||
Bottin BottinConfig
|
||||
Web WebConfig
|
||||
}
|
||||
|
||||
|
@ -18,6 +19,12 @@ type APIConfig struct {
|
|||
Port int
|
||||
}
|
||||
|
||||
type BottinConfig struct {
|
||||
API struct {
|
||||
Host string
|
||||
}
|
||||
}
|
||||
|
||||
type WebConfig struct {
|
||||
Port int
|
||||
}
|
||||
|
@ -56,6 +63,12 @@ func RegisterFlags(cmd *cobra.Command) error {
|
|||
return err
|
||||
}
|
||||
|
||||
// bottin.api.host
|
||||
if err := RegisterString(cmd, true,
|
||||
"bottin.api.host", "bottin-api-host", "Bottin API server host", "localhost"); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
// web.port ; --web-port
|
||||
cmd.PersistentFlags().Int("web-port", 3183, "Webserver port")
|
||||
if err := viper.BindPFlag("web.port", cmd.PersistentFlags().Lookup("web-port")); err != nil {
|
||||
|
|
Loading…
Reference in a new issue