π± app
π± Manage your CodePushGo app settings and configurations in CodePushGo Cloud.
β Add
Alias: a
npx @capgo/cli@latest app addβ Add a new app to CodePushGo Cloud with a unique app ID in the format com.test.app. All options can be guessed from config if not provided.
Example:
npx @capgo/cli@latest app add com.example.app --name "My App" --icon ./icon.pngOptions:
| Param | Type | Description |
|---|---|---|
| -n, | string | App name for display in CodePushGo Cloud |
| -i, | string | App icon path for display in CodePushGo Cloud |
| -a, | string | API key to link to your account |
ποΈ Delete
npx @capgo/cli@latest app deleteποΈ Delete an app from CodePushGo Cloud, optionally specifying a version to delete only that bundle.
Example:
npx @capgo/cli@latest app delete com.example.appOptions:
| Param | Type | Description |
|---|---|---|
| -a, | string | API key to link to your account |
π List
Alias: l
npx @capgo/cli@latest app listπ List all apps registered under your account in CodePushGo Cloud.
Example:
npx @capgo/cli@latest app listOptions:
| Param | Type | Description |
|---|---|---|
| -a, | string | API key to link to your account |
π Debug
npx @capgo/cli@latest app debugπ Listen for live update events in CodePushGo Cloud to debug your app. Optionally target a specific device for detailed diagnostics.
Example:
npx @capgo/cli@latest app debug com.example.app --device DEVICE_IDOptions:
| Param | Type | Description |
|---|---|---|
| -a, | string | API key to link to your account |
| -d, | string | The specific device ID to debug |
βοΈ Setting
npx @capgo/cli@latest app settingβοΈ Modify Capacitor configuration programmatically by specifying the path to the setting. (e.g., plugins.CapacitorUpdater.defaultChannel). You MUST provide either βstring or βbool.
Example:
npx @capgo/cli@latest app setting plugins.CapacitorUpdater.defaultChannel --string "Production"Options:
| Param | Type | Description |
|---|---|---|
| βbool | string | A value for the setting to modify as a boolean, ex: βbool true |
| βstring | string | A value for the setting to modify as a string, ex: βstring βProductionβ |
βοΈ Set
Alias: s
npx @capgo/cli@latest app setβοΈ Update settings for an existing app in CodePushGo Cloud, such as name, icon, or retention period for bundles. Retention of 0 means infinite storage.
Example:
npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 30Options:
| Param | Type | Description |
|---|---|---|
| -n, | string | App name for display in CodePushGo Cloud |
| -i, | string | App icon path for display in CodePushGo Cloud |
| -a, | string | API key to link to your account |
| -r, | string | Retention period of app bundle in days, 0 by default = infinite |