mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
3bfa6834a8
GitOrigin-RevId: 62f786ea8fc8d14deb0e78bbbdc2467b7a4e0e9e
60 lines
2.2 KiB
Go
60 lines
2.2 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/hasura/graphql-engine/cli/internal/scripts"
|
|
"github.com/hasura/graphql-engine/cli/util"
|
|
"github.com/spf13/afero"
|
|
|
|
"github.com/hasura/graphql-engine/cli"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func newUpdateMultipleSources(ec *cli.ExecutionContext) *cobra.Command {
|
|
v := viper.New()
|
|
cmd := &cobra.Command{
|
|
Use: "update-project-v3",
|
|
Short: "update project to use config v2 to config v3",
|
|
Long: `
|
|
Convenience script used to upgrade your CLI project to use config v3.
|
|
Note that this process is completely independent from your Hasura Graphql Engine server update process.`,
|
|
SilenceUsage: true,
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
ec.Viper = v
|
|
err := ec.Prepare()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ec.Validate()
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
opts := scripts.UpgradeToMuUpgradeProjectToMultipleSourcesOpts{
|
|
Fs: afero.NewOsFs(),
|
|
ProjectDirectory: ec.ExecutionDirectory,
|
|
MigrationsAbsDirectoryPath: ec.MigrationDir,
|
|
SeedsAbsDirectoryPath: ec.SeedsDirectory,
|
|
Logger: ec.Logger,
|
|
EC: ec,
|
|
}
|
|
return scripts.UpdateProjectV3(opts)
|
|
},
|
|
}
|
|
|
|
f := cmd.Flags()
|
|
|
|
f.String("endpoint", "", "http(s) endpoint for Hasura GraphQL Engine")
|
|
f.String("admin-secret", "", "admin secret for Hasura GraphQL Engine")
|
|
f.String("access-key", "", "access key for Hasura GraphQL Engine")
|
|
f.MarkDeprecated("access-key", "use --admin-secret instead")
|
|
f.Bool("insecure-skip-tls-verify", false, "skip TLS verification and disable cert checking (default: false)")
|
|
f.String("certificate-authority", "", "path to a cert file for the certificate authority")
|
|
|
|
// need to create a new viper because https://github.com/spf13/viper/issues/233
|
|
util.BindPFlag(v, "endpoint", f.Lookup("endpoint"))
|
|
util.BindPFlag(v, "admin_secret", f.Lookup("admin-secret"))
|
|
util.BindPFlag(v, "access_key", f.Lookup("access-key"))
|
|
util.BindPFlag(v, "insecure_skip_tls_verify", f.Lookup("insecure-skip-tls-verify"))
|
|
util.BindPFlag(v, "certificate_authority", f.Lookup("certificate-authority"))
|
|
return cmd
|
|
}
|