Binshops Technical DocBinshops Technical Doc
Home
E-Commerce API
Next.js E-Commerce
BINSHOPS
Home
E-Commerce API
Next.js E-Commerce
BINSHOPS

Vue Storefront (Old)

This is an old storefront based on the Vue Storefront framework.

Caution

We do not recommend using this storefront. Neither the theme nor the Vue Storefront framework is supported anymore.

Requirements

  • PrestaShop version 1.7.7.x and higher
  • Node 14

How to start if you want to try out the integration

  1. First we need to expose our PrestaShop REST API endpoints. Download and install PrestaShop REST API just like any other PrestaShop module.

  2. Clone the PrestaShop integration repository:

git clone git@github.com:vuestorefront-community/prestashop.git
  1. Install dependencies:
yarn install
  1. Change API url in this file:
module.exports = {
    integrations: {
        prestashop: {
            location: '@vue-storefront/prestashop-api/server',
            configuration: {
                api: {
                    url: 'Your Shop URL'
                }
            }
        }
    }
};
  1. Build and Run the project:
yarn build

yarn dev