Skip to content

Commit

Permalink
Filled in help for serve command
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett Smith committed Jan 14, 2017
1 parent 9e66a75 commit 37beb1d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/guild_view_cmd.erl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,18 @@ parser() ->
cli:parser(
"guild view",
"[OPTION]...",
"Start project viewer.",
"Start a web base app to view and interact with project runs.\n"
"\n"
"When the server is running, open your browser on the specified port "
"(default is " ++ integer_to_list(?default_port)
++ ") - e.g. http://localhost:" ++ integer_to_list(?default_port) ++ ".\n"
"\n"
"To log server requests, use --logging.\n"
"\n"
"To modify the refresh interval (default is "
++ integer_to_list(?default_refresh_interval)
++ " seconds), use --interval. This is useful for "
"longer running operations that don't need to be refreshed often.",
view_options() ++ guild_cmd_support:project_options(),
[{pos_args, 0}]).

Expand Down

0 comments on commit 37beb1d

Please sign in to comment.