A Magento 2 module meant to be used in demo 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/terrible_module"
}
],
"require": {
"crealoz/terrible_module": "main"
}
}
Then, you can install the module with the following command :
composer require crealoz/terrible_module:main
Then, you need to enable the module with the following command :
bin/magento module:enable Crealoz_TerribleModule
And finally, you need to upgrade the database with the following command :
bin/magento setup:upgrade