Skip to main content

Apps Development Quickstart

Saleor apps can be written in any programming language as long as it's a Web application conforming to the app requirements.

The existing app ecosystem in JavaScript can help you get up and running quickly.

JavaScript​

The simplest way to create a Saleor app is to clone the Saleor App Template repository:

git clone https://github.com/saleor/saleor-app-template.git my-saleor-app

Then install dependencies and start the app:

cd my-saleor-app
pnpm install
pnpm dev

That's it! Your app should be up and running.

Other languages​

Python​

While Saleor doesn't provide an official template for Python apps, we can recommend using mirumee/saleor-app-framework-python. It was created by our partner Mirumee Software, with some contributions from core Saleor members.