Repository is a starter Alokai application integrated with Magento2.
- NodeJS >=14 <=16
- Yarn
- Magento2
To get started, see the following guides:
-
Introduction to learn what is Alokai
-
Configuring Magento2 to setup your Magento2 store
-
Configuring Alokai to install and setup new Alokai project for Magento2
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
-
Install docker and docker-compose on your local machine.
-
Add your hosts to the
/etc/hosts
file:127.0.0.1 myshop1.local myshop2.local
-
Set
API_BASE_URL=/api/
env variable in the.env
file. -
If you're using Linux: uncomment lines 10 and 11 in the
docker-compose.yml
file. -
Add your hosts to the
server_name
option inside thedocker/nginx/nginx.conf
file:server_name localhost myshop1.local myshop2.local;
-
Because this is a local dev setup and nginx is configured to use an unsecured HTTP connection, the
middleware.config.js
file needs to be updated to disable the secure cookie option. To achieve this, you can modify thecookiesDefaultOpts
object in themagento
integration section of themiddleware.config.js
file as follows:module.exports = { integrations: { magento: { configuration: { cookiesDefaultOpts: { secure: process.env.VSF_COOKIE_SECURE || false, } } } } };
-
Start docker-compose daemon:
$ docker-compose up -d
-
Start storefront dev server:
$ yarn dev
- Alokai Documentation
- Alokai Enterprise Documentation
- Magento2 Integration Documentation
- API References
- Community Chat
If you have any questions about this integration we will be happy to answer them on Magento2
channel on our Discord.