Skip to content

Commit

Permalink
missing flags
Browse files Browse the repository at this point in the history
  • Loading branch information
FZambia committed Sep 29, 2024
1 parent 0852bfc commit f5e50b9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@ func DefineFlags(rootCmd *cobra.Command) {
rootCmd.Flags().StringP("internal_address", "", "", "custom interface address to listen on for internal endpoints")
rootCmd.Flags().StringP("internal_port", "", "", "custom port for internal endpoints")
rootCmd.Flags().StringP("engine.type", "", "memory", "broker to use: ex. redis")
rootCmd.Flags().BoolP("broker.enabled", "", false, "enable broker")
rootCmd.Flags().StringP("broker.type", "", "memory", "broker to use: ex. redis")
rootCmd.Flags().BoolP("presence_manager.enabled", "", false, "enable presence manager")
rootCmd.Flags().StringP("presence_manager.type", "", "memory", "presence manager to use: ex. redis")
rootCmd.Flags().StringP("log_level", "", "info", "set the log level: trace, debug, info, error, fatal or none")
rootCmd.Flags().StringP("log_file", "", "", "optional log file - if not specified logs go to STDOUT")
Expand Down

0 comments on commit f5e50b9

Please sign in to comment.