Skip to main content

Development

You can find the code for all the apps from the Saleor App Store in the saleor/apps monorepo.

Each app is a Next.js application based off saleor-app-template.

In this article, you will learn how to run the Saleor App Store apps locally.

Prerequisites

To work with the saleor/apps repository, you need to install pnpm. If you haven't already, please do so by running:

npm install -g pnpm

Setup

  1. Clone the saleor/apps repository.
info

If you want to fork saleor/apps, please read the Forking article.

  1. Install the dependencies:
pnpm install
  1. Start all the dev servers:
pnpm dev

You can also start an individual application with:

pnpm dev --filter=saleor-app-X

where X is the app's name (matching apps/X).

Build

To build all apps, run:

pnpm build

Was this page helpful?