gitpod/components/ws-manager/cmd/generate-config.go
2020-08-25 09:25:15 +00:00

35 lines
853 B
Go

// Copyright (c) 2020 TypeFox GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License-AGPL.txt in the project root for license information.
//go:generate sh -c "cd .. && go run main.go generate config > config-schema.json"
package cmd
import (
"encoding/json"
"fmt"
"github.com/alecthomas/jsonschema"
"github.com/spf13/cobra"
)
var generateConfigCmd = &cobra.Command{
Use: "config",
Short: "Generates JSON schema for the configuration",
Run: func(cmd *cobra.Command, args []string) {
schema := jsonschema.Reflect(&config{})
schema.Title = "ws-manager config schema - generated using wsman generate config"
out, err := json.MarshalIndent(schema, "", " ")
if err != nil {
panic(err)
}
fmt.Print(string(out))
},
}
func init() {
generateCmd.AddCommand(generateConfigCmd)
}