Disclaimer: This project is still in beta phase.
This repository is a starting point for creating new integrations for Vue Storefront Next.
- Documentation (WIP)
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 usinggetters
; - theme -
nuxt
project that glues everything together. It extends our core theme and usescomposables
to retrieve data.
-
Change all
@vue-storefront/boilerplate
strings to your integration name (eg@vue-storefront/super-ecomm
) -
Install all required dependencies:
yarn install
- (optional) Then you can verify if everything works properly by building all three projects:
yarn build
- If everything built properly, you can start creating your new integration with:
yarn dev