2022-05-25 17:35:39 +05:30

29 lines
680 B
Go

// Copyright (c) 2022 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/gitpod-io/gitpod/common-go/log"
"github.com/gitpod-io/gitpod/public-api-server/pkg/server"
"github.com/spf13/cobra"
)
func init() {
rootCmd.AddCommand(runCommand)
}
var runCommand = &cobra.Command{
Use: "run",
Short: "Starts the service",
Version: Version,
Run: func(cmd *cobra.Command, args []string) {
cfg := getConfig()
if err := server.Start(log.Log, cfg); err != nil {
log.WithError(err).Fatal("cannot start server")
}
},
}