Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var PullCmd = &cobra.Command{ Use: "pull [environment]", Short: "Pull and decrypt environment variables from Hyphen", Long: ` The pull command retrieves environment variables from Hyphen and decrypts them into local .env files. This command allows you to: - Pull a specific environment by name - Pull all environments for the application The pulled environments will be decrypted and saved as .env.[environment_name] files in your current directory. Examples: hyphen pull production hyphen pull After pulling, all environment variables will be locally available and ready for use. `, Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { printer = cprint.NewCPrinter(flags.VerboseFlag) if version != 0 { versionPtr = &version } if err := RunPull(args, forceFlag); err != nil { return err } return nil }, }
View Source
var (
Silent bool = false
)
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.