appflow live-update generate-signing-key
info
This feature is only available to Enterprise customers with access to Self-hosted Live Updates.
[appflow, live-update, generate-signing-key]
Generate a public and private key pair for signing Live Updates.
appflow live-update generate-signing-key [flags]
Examples
appflow live-update generate-signing-key --public appflow_public.pem --private appflow_private.pem
Flags
Name | Type | Default | Description |
---|---|---|---|
--private | string | "appflow_private.pem" | File name to use for the private RSA key file. |
--public | string | "appflow_public.pem" | File name to use for the public RSA key file. |
Global Flags
Name | Type | Default | Description |
---|---|---|---|
-h, --help | boolean | false | Print help information for command |
--config | string | Appflow config file (.appflow.yaml by default) | |
--json | boolean | false | For commands with output, shortcut to print as JSON |
--output | string | "text" | For commands with output, print as [json] or human readable [text] |
--token | string | Ionic authorization token |
Outputs
Name | Type | Description |
---|---|---|
status | "CREATED" | "PENDING" | "RUNNING" | "BUILDING" | "FAILED" | "SUCCESS" | "CANCELED" | The status of generating the signing key pair. |
publicKey | string | The relative filepath of the public key. |
privateKey | string | The relative filepath of the private key. |
Successful Output
{
"status": "SUCCESS",
"publicKey": "appflow_public.pem",
"privateKey": "appflow_private.pem"
}