Skip to content

Commit

Permalink
Update run.go
Browse files Browse the repository at this point in the history
  • Loading branch information
DeekshithSH authored Feb 20, 2024
1 parent a0dceda commit 0cce47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/fsb/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func runApp(cmd *cobra.Command, args []string) {
} else {
mainLogger.Info("Public IP", zap.String("ip", publicIp))
}
err = router.Run(fmt.Sprintf(":%d", config.ValueOf.Port))
err = router.Run(fmt.Sprintf("0.0.0.0:%d", config.ValueOf.Port))
if err != nil {
mainLogger.Sugar().Fatalln(err)
}
Expand Down

0 comments on commit 0cce47d

Please sign in to comment.