No description
Find a file
Adrian Pilarczyk ba40df0a10
chore/replace taxes readme (#303)
* refactor: 📝 replace readme with link to taxes docs

* refactor: 📝 replace the root level link to taxes

* build: 👷 add changeset
2023-03-17 10:26:43 +01:00
.changeset chore/replace taxes readme (#303) 2023-03-17 10:26:43 +01:00
.github Update labeler.yml (#293) 2023-03-16 12:53:58 +01:00
.husky Add prettier on pre-commit & reformat codebase (#137) 2023-02-10 11:13:59 +01:00
apps chore/replace taxes readme (#303) 2023-03-17 10:26:43 +01:00
docs Update UI to match new dashboard style (#138) 2023-02-21 11:34:30 +01:00
packages [vercel deploy] 2023-03-10 09:50:15 +01:00
templates Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
.eslintignore Update UI to match new dashboard style (#138) 2023-02-21 11:34:30 +01:00
.eslintrc.js Add shared eslint 2023-02-07 19:11:48 +01:00
.gitignore Invoices: Add debug logs and better temp pdf location (#265) 2023-03-15 09:38:13 +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 Update dependencies and fix eslint config (#255) 2023-03-09 14:01:18 +01:00
pnpm-lock.yaml Author field in manifests (#299) 2023-03-16 19:09:26 +01:00
pnpm-workspace.yaml Setup Turborepo boilerplate 2023-02-07 18:57:26 +01:00
README.md chore/replace taxes readme (#303) 2023-03-17 10:26:43 +01:00
turbo.json Add emails and messages app (#236) 2023-03-09 09:14:29 +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.
  • emails-and-messages - notifications and email communication with customers.
  • search - connect Saleor with search engines.
  • slack - get notifications on Slack channel from Saleor events.
  • taxes - calculate order and checkout taxes using external services.
  • cms - exports products from Saleor to CMS.

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