saleor-apps-redis_apl/README.md
Adrian Pilarczyk 9f0dd813a4
feat: add taxes app (#223)
* feat:  add taxes app

* chore: 🔥 remove files, use monorepo ones instead

* chore:  add all env vars to .env.example

* refactor: 🔧 use saleor eslint config

* build: ⬆️ app-sdk, remove vercel from apl

* refactor: ♻️ remove providers/index, infer taxProviders from providerConfig

* refactor: ♻️ use tuples to use objects

* refactor: 🚚 move types to taxes module

* refactor: ♻️ tax-prepare-data -> tax-line-resolver

* refactor: get isInFrame from apps-shared

* build: ⬆️ next

* feat:  add appRegister allowlist

* Update apps/taxes/src/pages/api/manifest.ts

Co-authored-by: Krzysztof Wolski <krzysztof.k.wolski@gmail.com>

* Update apps/taxes/src/pages/api/manifest.ts

Co-authored-by: Krzysztof Wolski <krzysztof.k.wolski@gmail.com>

* chore: 💡 improve comments

* refactor: 🔥 app-dashboard-link

* docs: 📝 add taxes to readme

* refactor: 🔥 app-main-bar

* refactor: ♻️ align saleor-app.ts with the rest

* refactor: ♻️ use defaultValues

* chore: ♻️ misc

---------

Co-authored-by: Krzysztof Wolski <krzysztof.k.wolski@gmail.com>
2023-03-02 12:01:17 +01:00

2.4 KiB

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.
  • taxes - calculate order and checkout taxes using external services.

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