Skip to content

Commit

Permalink
Add missing providers in docs (vercel#607)
Browse files Browse the repository at this point in the history
* chore(docs): add missing providers

* chore: add ordercloud to tsconfig

* chore: add kibocommerce in docs

* chore: typo

* fix: revert to local as default provider

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: Gonzalo Pozzo <[email protected]>
  • Loading branch information
lsalling and goncy authored Dec 16, 2021
1 parent d8b42ac commit d1f8ff0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Available providers: local, bigcommerce, shopify, swell, saleor, spree, commercejs
# Available providers: local, bigcommerce, shopify, swell, saleor, spree, ordercloud, vendure, kibocommerce, commercejs
COMMERCE_PROVIDER=

BIGCOMMERCE_STOREFRONT_API_URL=
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Demo live at: [demo.vercel.store](https://demo.vercel.store/)
- Saleor Demo: https://saleor.vercel.store/
- Ordercloud Demo: https://ordercloud.vercel.store/
- Spree Demo: https://spree.vercel.store/
- Kibo Commerce Demo: https://kibocommerce.vercel.store/
- Commerce.js Demo: https://commercejs.vercel.store/

## Features
Expand Down
8 changes: 7 additions & 1 deletion framework/commerce/new-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@

A commerce provider is a headless e-commerce platform that integrates with the [Commerce Framework](./README.md). Right now we have the following providers:

- Local ([framework/local](../local))
- Shopify ([framework/shopify](../shopify))
- Swell ([framework/swell](../swell))
- BigCommerce ([framework/bigcommerce](../bigcommerce))
- Vendure ([framework/vendure](../vendure))
- Saleor ([framework/saleor](../saleor))
- Shopify ([framework/shopify](../shopify))
- OrderCloud ([framework/ordercloud](../ordercloud))
- Spree ([framework/spree](../spree))
- Kibo Commerce ([framework/kibocommerce](../kibocommerce))
- Commerce.js ([framework/commercejs](../commercejs))

Adding a commerce provider means adding a new folder in `framework` with a folder structure like the next one:
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,15 @@
"include": ["next-env.d.ts", "**/*.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": [
"node_modules",
"./framework/local",
"./framework/bigcommerce",
"./framework/shopify",
"./framework/swell",
"./framework/vendure",
"./framework/saleor",
"./framework/commercejs"
"./framework/spree",
"./framework/ordercloud",
"./framework/kibocommerce",
"./framework/commercejs"
]
}

0 comments on commit d1f8ff0

Please sign in to comment.