# Getting Started
# Requirements
- PrestaShop version 1.7.7.x and higher
- Node 14
# How to start if you want to try out the integration
First we need to expose our PrestaShop REST API endpoints. Download and install PrestaShop REST API (opens new window) just like any other PrestaShop module.
Clone the PrestaShop integration repository:
git clone git@github.com:vuestorefront-community/prestashop.git
- Install dependencies:
yarn install
- Change API url in this file
packages/theme/middleware.config.js
:
module.exports = {
integrations: {
prestashop: {
location: '@vue-storefront/prestashop-api/server',
configuration: {
api: {
url: 'Your Shop URL'
}
}
}
}
};
- Build and Run the project:
yarn build
yarn dev