No description
Find a file
Lukasz Ostrowski b5df7cffc4 Fix import
2023-02-14 09:26:06 +01:00
.changeset Release invoices@1.3.0, search@1.0.2 [vercel-deploy] 2023-02-13 17:21:58 +01:00
.github/workflows Extract TitleBar and AppIcon to shared package and implement it in apps (#134) 2023-02-09 18:41:23 +01:00
.husky Add prettier on pre-commit & reformat codebase (#137) 2023-02-10 11:13:59 +01:00
apps Fix import 2023-02-14 09:26:06 +01:00
docs Add forking & development readme (#133) 2023-02-10 15:24:44 +01:00
packages Release apps (#136) 2023-02-10 15:08:06 +01:00
templates Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
.eslintignore Extract TitleBar and AppIcon to shared package and implement it in apps (#134) 2023-02-09 18:41:23 +01:00
.eslintrc.js Add shared eslint 2023-02-07 19:11:48 +01:00
.gitignore Make content cards not sticky, for better support of smaller screens (#148) 2023-02-13 16:17:30 +01:00
.prettierignore Add prettier on pre-commit & reformat codebase (#137) 2023-02-10 11:13:59 +01:00
.prettierrc Move config files 2023-02-07 19:27:17 +01:00
CODEOWNERS Move config files 2023-02-07 19:27:17 +01:00
LICENSE Move config files 2023-02-07 19:27:17 +01:00
package.json Add prettier on pre-commit & reformat codebase (#137) 2023-02-10 11:13:59 +01:00
pnpm-lock.yaml Install Vercel Analytics in Invoices 2023-02-14 09:24:05 +01:00
pnpm-workspace.yaml Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
README.md Add forking & development readme (#133) 2023-02-10 15:24:44 +01:00
turbo.json Add NEXT_PUBLIC_VERCEL_ENV env variable to invalidate turbo-ignore (#150) 2023-02-13 18:03:38 +01:00

Saleor Apps

Saleor Apps

The central space for Saleor Apps, Integrations and Marketplace.

Overview

This repository serves as a starting point in the exploration of Saleor apps.

Saleor apps are separate applications that use GraphQL to talk to the Saleor server and receive webhooks with event notifications from Saleor.

docs.saleor.io

Apps list

In the apps folder, you will find the following applications:

  • data-importer - import data from CSV to Saleor.
  • invoices - generate invoice PDF for each order.
  • klaviyo - send Saleor events to Klaviyo, where you can notify the customers.
  • search - connect Saleor with search engines.
  • slack - get notifications on Slack channel from Saleor events.

Development

Setup

Make sure you have installed pnpm:

npm install -g pnpm

Install all dependencies:

pnpm install

Start the apps` dev servers:

pnpm dev

The apps' ports will be displayed in the terminal output.

You can find the required env vars for each app in apps/NAME/.env.example file.

To start an individual app, run:

pnpm dev --filter=saleor-app-X

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

Build

To build all apps, run:

pnpm build

Documentation