Siddhant Khare 7cb644114f feat: gp docs in gitpod cli
Signed-off-by: Siddhant Khare <siddhant@gitpod.io>
2023-01-13 11:05:52 +01:00

25 lines
570 B
Go

// Copyright (c) 2023 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License.AGPL.txt in the project root for license information.
package cmd
import (
"github.com/spf13/cobra"
)
// URL of the Gitpod documentation
const DocsUrl = "https://www.gitpod.io/docs"
var docsCmd = &cobra.Command{
Use: "docs",
Short: "Open Gitpod Documentation in default browser",
Run: func(cmd *cobra.Command, args []string) {
openPreview("GP_EXTERNAL_BROWSER", DocsUrl)
},
}
func init() {
rootCmd.AddCommand(docsCmd)
}