
* 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>
36 lines
1 KiB
TypeScript
36 lines
1 KiB
TypeScript
import { SaleorApp } from "@saleor/app-sdk/saleor-app";
|
|
import { APL, FileAPL, SaleorCloudAPL, UpstashAPL } from "@saleor/app-sdk/APL";
|
|
|
|
/**
|
|
* By default auth data are stored in the `.auth-data.json` (FileAPL).
|
|
* For multi-tenant applications and deployments please use UpstashAPL.
|
|
*
|
|
* To read more about storing auth data, read the
|
|
* [APL documentation](https://github.com/saleor/saleor-app-sdk/blob/main/docs/apl.md)
|
|
*/
|
|
|
|
export let apl: APL;
|
|
switch (process.env.APL) {
|
|
case "upstash":
|
|
// Require `UPSTASH_URL` and `UPSTASH_TOKEN` environment variables
|
|
apl = new UpstashAPL();
|
|
break;
|
|
case "saleor-cloud": {
|
|
if (!process.env.REST_APL_ENDPOINT || !process.env.REST_APL_TOKEN) {
|
|
throw new Error("Rest APL is not configured - missing env variables. Check saleor-app.ts");
|
|
}
|
|
|
|
apl = new SaleorCloudAPL({
|
|
resourceUrl: process.env.REST_APL_ENDPOINT,
|
|
token: process.env.REST_APL_TOKEN,
|
|
});
|
|
|
|
break;
|
|
}
|
|
default:
|
|
apl = new FileAPL();
|
|
}
|
|
|
|
export const saleorApp = new SaleorApp({
|
|
apl,
|
|
});
|