Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var PushCmd = &cobra.Command{ Use: "push [environment]", Short: "Push local environment variables to Hyphen", Long: ` The push command uploads local environment variables from .env files to Hyphen. This command allows you to: - Push all environments found in local .env files when no environment is specified - Push a specific environment by name - Encrypt and securely store your environment variables in Hyphen The command looks for .env files in the current directory with the naming convention .env.[environment_name]. Examples: hyphen push production hyphen push After pushing, all environment variables will be securely stored in Hyphen and available for use across your project. `, Args: cobra.MaximumNArgs(1), RunE: func(cmd *cobra.Command, args []string) error { printer = cprint.NewCPrinter(flags.VerboseFlag) if err := RunPush(args, cmd); 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.