-
Notifications
You must be signed in to change notification settings - Fork 89
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
Update docs #598
Update docs #598
Conversation
Adds the help information that it will show up in your deploy history since that is an important aspect of it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
commands/info.go
Outdated
@@ -16,7 +16,7 @@ var ( | |||
|
|||
// InfoCmd ... | |||
InfoCmd = &cobra.Command{ | |||
Use: "info", | |||
Use: "info [local | dry-run | remote-alias]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the remote-alias
portion of this has yet to be implemented
commands/login.go
Outdated
@@ -15,7 +15,11 @@ var ( | |||
LoginCmd = &cobra.Command{ | |||
Use: "login", | |||
Short: "Authenticate your nanobox client with your nanobox.io account.", | |||
Long: ``, | |||
Long: ` | |||
Authenticate with your nanobox account by passing the username and password in or using the following environment variables: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest removing the leading spaces on these 3 lines, so the output isn't pushed out so much.
commands/remote.go
Outdated
@@ -27,7 +27,7 @@ remote, live applications created with Nanobox. | |||
|
|||
// RemoteAddCmd ... | |||
RemoteAddCmd = &cobra.Command{ | |||
Use: "add", | |||
Use: "add <team-name>/<app-name> [remote-alias]", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since team-name
is technically optional, can you update this to be [team-name/]<app-name> [remote-alias]
@glinton should be good to go now |
Helps with #503