// 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/ide-service/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") } }, }