pdo
, yaml
, redis
, ctype
You need to have a working Magento project before plugging Lightna into it.
Set up it into project/magento-os
folder
php bin/magento deploy:mode:set developerphp bin/magento config:set dev/template/allow_symlink 1
cd entry/magento-os && \make install && \cd ../..
export magentoAppDir=`realpath project/magento-os/app` && \export lightnaModulesDir=`realpath code` && \mkdir -p $magentoAppDir/code/Lightna && \mkdir -p $magentoAppDir/design/frontend/Lightna && \ln -sf $lightnaModulesDir/magento/lightna-frontend $magentoAppDir/code/Lightna/Frontend && \ln -sf $lightnaModulesDir/magento/lightna-demo $magentoAppDir/code/Lightna/Demo && \ln -sf $lightnaModulesDir/magento/lightna-theme $magentoAppDir/design/frontend/Lightna/Lightna && \ln -sf $lightnaModulesDir/magento/lightna-lane-theme $magentoAppDir/design/frontend/Lightna/Lane
mv project/magento-os/pub/index.php project/magento-os/pub/magento_index.php && \ln -sf ../../../entry/magento-os/index.php project/magento-os/pub/index.php
lightna_entry
in MagentoCreate the Lightna configuration file in Magento at project/magento-os/app/etc/lightna.php
with the following content:
<?php return [ // Specify the correct path to the Lightna entry folder 'lightna_entry' => __DIR__ . '/../../../../entry/magento-os',];
php project/magento-os/bin/magento setup:upgrade
, then change the current Magento theme to
Lightna
env.php
file from the Lightna magento-pack to the Magento project:
cp code/lightna/magento-pack/entry/edition/main/env.php entry/magento-os/edition/main/env.php
entry/magento-os/env.php
, follow the comments to verify and finish the
configuration. Make sure there is no ****
left in the files after edits.
cd entry/magento-os && \make build && \make schema.update && \./cli index.update.all
* * * * * { cd [lightna_entry_path] && ./cli index.queue.watch; } 2>&1 >> [logs_path]/lightna-index.log