Skip to content
Merged
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
4 changes: 2 additions & 2 deletions cmd/dbc/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type AuthCmd struct {
}

type LoginCmd struct {
RegistryURL string `arg:"positional" help:"URL of the driver registry to authenticate with"`
RegistryURL string `arg:"positional" help:"URL of the driver registry to authenticate with [default: https://dbc-cdn-private.columnar.tech]"`
ClientID string `arg:"env:OAUTH_CLIENT_ID" help:"OAuth Client ID (can also be set via DBC_OAUTH_CLIENT_ID)"`
ApiKey string `arg:"--api-key" help:"Authenticate using an API key instead of OAuth (use '-' to read from stdin)"`
}
Expand Down Expand Up @@ -231,7 +231,7 @@ func (m loginModel) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
func (m loginModel) View() string { return m.spinner.View() + " Waiting for confirmation..." }

type LogoutCmd struct {
RegistryURL string `arg:"positional" help:"URL of the driver registry to log out from"`
RegistryURL string `arg:"positional" help:"URL of the driver registry to log out from [default: https://dbc-cdn-private.columnar.tech]"`
Purge bool `arg:"--purge" help:"Remove all local auth credentials for dbc"`
}

Expand Down
Loading