Skip to content

Add an App

Requirements

Before getting started with CodePushGo, make sure you have:

Introduction to CodePushGo

Play

Live updates are 3 step away

Guided setup

  1. Create your account at https://codepushgo.com/register. signup screenshot

  2. Use the Init commands to get started

    Terminal window
    npx @codepushgo/cli@latest init [APIKEY]
    You will be presented with a series of questions. Provide the necessary answers to complete the automated setup.

  3. Deploy a live update

Manual setup

In case the init command doesn’t work for you, you can manually add an app.

  1. Connect the CLI to your account:

    Terminal window
    npx @codepushgo/cli@latest login [APIKEY]

  2. Add the app to your account with this command:

    Terminal window
    npx @codepushgo/cli@latest app add [APP_NAME]

  3. Install the plugin in your app:

    Terminal window
    npm i @codepushgo/capacitor-updater

  4. Call the init method as early as possible in your app:

    import { React NativeUpdater } from '@codepushgo/capacitor-updater';
    React NativeUpdater.notifyAppReady();

  5. Deploy a live update