Activation from command-line interface
Before you begin, make sure you have read the Magento documentation:
http://devdocs.magento.com/guides/v2.0/config-guide/cli/config-cli.html
- Start the command interpreter (BASH shell).
- Change to your Magento installation directory
cd <your Magento install dir>
- Enable the module:
php bin/magento module:enable --clear-static-content Lyranetwork_Lyra
- Start the update of the database:
php bin/magento setup:upgrade
- Generate and pre-compile classes:
php bin/magento setup:di:compile
- Deploy static files:
php bin/magento setup:static-content:deploy [locale]
[locale] should be replaced by ISO-639 language codes for which to output static view files.Example: fr_FR for French, en_GB for English.