A Magento 2 module meant to be used in teaching purposes
First, you need to add GitHub repository to your composer.json file. You can do it adding the following lines :
{
"repositories": [
{
"type": "vcs",
"url": "https://github.com/crealoz/faq"
}
],
"require": {
"crealoz/faq": "main"
}
}Then, you can install the module with the following command :
composer require crealoz/faq:mainThen, you need to enable the module with the following command :
bin/magento module:enable Crealoz_FaqAnd finally, you need to upgrade the database with the following command :
bin/magento setup:upgrade