Skip to content

Commit

Permalink
Remove references to CLI being in beta (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemalachowski authored Dec 4, 2024
1 parent 1d51720 commit 27bb8ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Render CLI

This is the beta version of the Render CLI.

# Getting Started

## Installation
Expand Down
7 changes: 1 addition & 6 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,8 @@ import (
var welcomeMsg = lipgloss.NewStyle().Bold(true).Foreground(renderstyle.ColorFocus).
Render("Render CLI v" + cfg.Version)

var betaMsg = lipgloss.NewStyle().Foreground(renderstyle.ColorInfo).
Render("Note: The Render CLI is currently in beta, and may change as we release improvements and new features.")

var longHelp = fmt.Sprintf(`%s
%s
Welcome! Use the Render CLI to manage your services, datastores, and
environments directly from the command line. Trigger deploys, view logs,
start psql/SSH sessions, and more.
Expand All @@ -38,7 +33,7 @@ The CLI's default %s mode provides intuitive, menu-based navigation.
To use in %s mode (such as in a script), set each command's --output
option to either json or yaml for structured responses.
`, welcomeMsg, betaMsg, renderstyle.Bold("interactive"), renderstyle.Bold("non-interactive"))
`, welcomeMsg, renderstyle.Bold("interactive"), renderstyle.Bold("non-interactive"))

// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Expand Down

0 comments on commit 27bb8ec

Please sign in to comment.