Try It Out
If you want to demo the integration, you can run the following commands:Contribute
This project follows the all-contributors specification and contributions of any kind are welcome.Prerequisites
In order to use Vue Storefront, you must have the following:- NodeJS v14 or later
- KiboCommerce Account
Get Started
To begin development on your own version of the repo:- Fork the repo.
- Clone your fork of the repo:
git clone https://github.com/vuestorefront/kibocommerce.git cd kibocommerce. - Checkout develop branch
git checkout develop. - Run
yarnto install dependencies. - Define a store running environment by adding a STORE_ENV to your running project or execute the code
$ echo "STORE_ENV=dev" >> .env. - Copy config/example.json to an environment named config and update the GraphQL Endpoint:
$ cp packages/theme/config/example.json packages/theme/config/dev.json. - Update the Client ID and Shared Secret with your respective Application Client ID and Shared secret found in your Developer Console.
- Update
apiHostto point at your Kibo site. - Build dependencies
yarn build:api-client && yarn build:composables. - Run
yarn dev:themeto run theme. You can find other commands inpackage.json.
yarn dev:api-client or yarn dev:composables in a separate terminal window.

