update help text for console command (close #1507) (#1508)

This commit is contained in:
Daniel Compton 2019-01-30 05:02:49 +13:00 committed by Shahidh K Muhammed
parent b9b13d47b9
commit a5c9347d75

View File

@ -48,7 +48,7 @@ func NewConsoleCmd(ec *cli.ExecutionContext) *cobra.Command {
f.StringVar(&opts.APIPort, "api-port", "9693", "port for serving migrate api")
f.StringVar(&opts.ConsolePort, "console-port", "9695", "port for serving console")
f.StringVar(&opts.Address, "address", "localhost", "address to use")
f.StringVar(&opts.Address, "address", "localhost", "address to serve console and migration API from")
f.BoolVar(&opts.DontOpenBrowser, "no-browser", false, "do not automatically open console in browser")
f.StringVar(&opts.StaticDir, "static-dir", "", "directory where static assets mentioned in the console html template can be served from")