Add an App
Introduction to Capgo
Live updates are 3 step away
Guided setup
-
Create your account at https://capgo.app/register.
-
Use the Init commands to get started
You will be presented with a series of questions. Provide the necessary answers to complete the automated setup.Terminal window npx @capgo/cli@latest init [APIKEY] -
Deploy a live update
Deploy a live update Learn how to deploy a live update to your app
Manual setup
In case the init command doesn’t work for you, you can manually add an app.
-
Connect the CLI to your account:
Terminal window npx @capgo/cli@latest login [APIKEY] -
Add the app to your account with this command:
Terminal window npx @capgo/cli@latest app add [APP_NAME] -
Install the plugin in your app:
Terminal window npm i @capgo/capacitor-updater -
Call the init method as early as possible in your app:
import { CapacitorUpdater } from '@capgo/capacitor-updater';CapacitorUpdater.notifyAppReady(); -
Deploy a live update
Deploy a live update Learn how to deploy a live update to your app