Build apps using SHOPLINE CLI

The SHOPLINE CLI is a command-line tool tailored for SHOPLINE developers, streamlining project initialization, local development, and deployment workflows. It encompasses functionalities such as local app configuration, development store association, local project preview, and app debugging.
This document will guide you on how to use the SHOPLINE CLI to build apps.

App creation

Step 1: Set up the environment

Before you begin, ensure that your development environment meets the following requirements to facilitate smooth app development:

  1. A partner account and a development store have been created.
  2. Node.js is installed, with version 18.0 or higher.
  3. A package manager, such as npm, is installed.
  4. Git version control tool is installed.
  5. A browser is downloaded. We recommend using the latest version of Chrome.

Step 2: Initialize the app

When initializing your app, choose one of the following package managers: npm, yarn, or pnpm, and follow these steps:

  1. Navigate to the target directory where you want to install the app.
  2. Run the following command to initialize the app:
npm create @shoplinedev/app@next
  1. Enter the name of your app development project. For example, if you enter Shopline App, it will be converted to shopline-app.
tip

The initialization process may take some time because necessary project dependencies need to be downloaded. To accelerate initialization, you can use the dev --skip-dependencies-installation command to skip downloading dependencies. However, you need to manually download the dependencies later.

After the app project is successfully initialized, a standard app structure is generated in your project directory. Develop your app based on this app structure.

Step 3: Start the local server

The SHOPLINE CLI uses cloudflared to proxy your local development services, allowing you to debug and preview your app in the development store. Start your app's local development server by the following steps:

  1. Navigate to the target app directory.
cd shopline-app
  1. Execute the local start command.
 npm run dev

After completing the above commands, follow the SHOPLINE CLI's instructions to proceed with the following steps:

  1. Log in to the Partner Portal.
  2. Select a partner account.
  3. Choose the app you want to manage.
  4. If the app is not found, the CLI will assist you in creating a new one.
  5. Select and associate the target development store.
Caution

If your app is already published on the SHOPLINE App Store, you cannot start it locally. This is because SHOPLINE CLI prevents developers from directly updating published apps in a production environment to avoid potential negative impacts. To continue local development, you can use the dev --reset command to reset the app's local cache data and create a new local development instance.

Step 4: Install the app

After starting the development service, the SHOPLINE CLI will generate a preview link for the app and guide you to install the app in the associated development store. If the app is already installed in the development store, the installation step will be skipped and you can directly preview your app.
Click the preview link or copy and paste it into your browser, and then you will see the following authorization and installation interface. Click Authorize and install to install and preview your app.

install.png

When you see the following interface, it means the app has been successfully created and installed. You can click Create Product to verify whether the app can properly invoke the SDK functions integrated with the app. If everything works correctly, you can continue local development in the current environment.

createproduct.png

CLI commands for building apps

By following the above steps, you can successfully create and start a local app development service. Additionally, you can use the following SHOPLINE CLI commands for further app development.

CommandDescription
devUsed to start app-related services
buildUsed to compile and package app development resources
configUsed to manage app configuration information

dev

Use the dev command to start local development services, including both frontend and backend. This command will start the services and generate a link for previewing the app locally.
When you run the dev command, the following steps are performed by default:

  • cloudflared proxies local services and creates a tunnel URL for external access.
  • Update the app URL, callback URL, and other information for the remote app.
  • Update the local TOML configuration file synchronously.
CommandFlagDescription
dev--resetReset the app's configuration. For example, reselect the partner, app, and associated development store.
--tunnel-urlSet the app address for the proxy. By default, the CLI automatically generates the tunnel URL. If you need to use a custom local address for the proxy, you can specify it using this command.
--skip-dependencies-installationWhen running npm create @shoplinedev/app, all necessary libraries are installed locally by default. You can use this command to skip the installation of app dependencies.
  • If you skip dependency installation, you must manually run npm install to install dependencies.
  • If you don't skip dependency installation but want to add additional libraries to package.json, run npm install again to install these new libraries.
  • Command example

    The following command shows an example of setting an app address for proxy.

    npm run dev --tunnelUrl=https://{handle}.myshopline.com

    config

    The config command is used to update local and remote app configurations, and to switch between configurations as needed locally. When you execute this command, it generates corresponding TOML files locally.
    For example, when you use the link command to associate a local app with a remote app, a shopline.app.{appName}.toml file is generated.

    CommandFlagDescription
    configlinkRetrieve the full list of apps from the Partner Portal, connect to the target app, and generate the corresponding configuration files. Existing files will be overwritten.
    pushPush the local TOML configuration to the remote server.
    useChoose the TOML configuration file to use.

    Command example

    The following command shows an example of choosing the TOML configuration file to use.

    shopline app config use
    # All available TOML configuration files are listed for selection.
    # ·shopline.app.appOne.toml
    # ·shopline.app.appTwo.toml
    # ·shopline.app.appThree.toml
    # ·shopline.app.appFour.toml
    tip
    1. When you use the link command to associate a remote app named appOne with a local app named appTwo, the SHOPLINE CLI will handle the configuration file as follows:
      • If a configuration file named shopline.app.appTwo.toml already exists locally, it will be overwritten with the new configuration.
      • If the file does not exist, a new configuration file named shopline.app.appTwo.toml will be created.
    2. When executing the push, link, or use commands, if you encounter a permissions issue with your current partner account, ensure you are using the correct partner account. Switch to the partner account that matches the current developing app and try executing the command again.

    build

    The build command is used to compile the app's frontend and backend resources. After executing this command, it will automatically perform packaging and create a dist folder in a specified directory to store the compiled static files. Subsequently, this compiled version is ready for immediate deployment to the production environment.

    Command example

    npm run build
    Was this article helpful to you?