Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ import (
)

var runCmd = &cobra.Command{
Use: "run",
Args: cobra.NoArgs,
Short: "Run the production server",
Hidden: true, // not working yet
Use: "run",
Args: cobra.NoArgs,
Short: "Run the production server",
Long: `Run the production server for connecting to the Agentuity Cloud.

This command starts a local production server that connects to the Agentuity Cloud
Expand Down
2 changes: 1 addition & 1 deletion internal/util/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func GetURLs(logger logger.Logger) CLIUrls {
appUrl = "https://app.agentuity.io"
}
if gravityUrl == "" {
gravityUrl = "grpc://gravity.agentuity.com"
gravityUrl = "grpc://devmode.agentuity.com"
}
if apiUrl == "https://api.agentuity.com" && transportUrl != "https://agentuity.ai" {
logger.Debug("switching transport url to production since the api url is production")
Expand Down
Loading