Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.68 KB

README.md

File metadata and controls

45 lines (29 loc) · 1.68 KB

Vue Storefront

beckn for Vue Storefront Next

Our Discord server

Disclaimer: This project is still in beta phase.

This repository is a starting point for creating new integrations for Vue Storefront Next.

This repository is a monorepo containing three projects:

  • api-client - communicates with a backend;
  • composables - exposes composable functions used to retrieve data using api-client and to map them to universal data formats using getters;
  • theme - nuxt project that glues everything together. It extends our core theme and uses composables to retrieve data.

How to start?

  1. Change all @vue-storefront/beckn strings to your integration name (eg @vue-storefront/super-ecomm)

  2. Install all required dependencies:

yarn install
  1. (optional) Then you can verify if everything works properly by building all three projects:
yarn build
  1. If everything built properly, you can start creating your new integration with:
yarn dev
  1. You can install pm2 to start in background to run production build..
sudo yarn add pm2
pm2 start "yarn start" --name taxibap