Skip to content

chore: edit CLI/UI copy #2247

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Jun 16, 2022
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: update CLI copy
  • Loading branch information
Katie Horne committed Jun 10, 2022
commit 110ea81923f5556d4216ad18dae7d9acba827ee4
6 changes: 4 additions & 2 deletions cli/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ func server() *cobra.Command {
"Coder requires a URL accessible by workspaces you provision. "+
"A free tunnel can be created for simple setup. This will "+
"expose your Coder deployment to a publicly accessible URL. "+
cliui.Styles.Field.Render("--access-url")+" can be specified instead.\n",
"If you'd like to use your own domain, you can provide it "+
"with the "+
cliui.Styles.Field.Render("--access-url")+" flag.\n",
))

// This skips the prompt if the flag is explicitly specified.
Expand Down Expand Up @@ -252,8 +254,8 @@ func server() *cobra.Command {
}
}

_, _ = fmt.Fprintf(cmd.ErrOrStderr(), "access-url: %s\n", accessURL)
_, _ = fmt.Fprintf(cmd.ErrOrStderr(), "provisioner-daemons: %d\n", provisionerDaemonCount)
_, _ = fmt.Fprintf(cmd.ErrOrStderr(), "Access your Coder UI in a browser at: %s\n", accessURL)
_, _ = fmt.Fprintln(cmd.ErrOrStderr())

if !dev {
Expand Down