rw-infotech / hello-world
Basic startup module
Package info
github.com/renuka2605/hello-world
Type:magento2-module
pkg:composer/rw-infotech/hello-world
1.0.1
2024-11-04 13:50 UTC
This package is auto-updated.
Last update: 2026-03-09 06:18:17 UTC
README
``rw-infotech/hello-world``
Main Functionalities
Simple Magento 2 module
Installation
* = in production please use the --keep-generated option
Type 1: Zip file
- Unzip the zip file in
app/code/RW-Infotech - Enable the module by running
php bin/magento module:enable RWInfotech_HelloWorld - Apply database updates by running
php bin/magento setup:upgrade* - Flush the cache by running
php bin/magento cache:flush
Type 2: Composer
- Make the module available in a composer repository for example:
- private repository
repo.magento.com - public repository
packagist.org - public github repository as vcs
- private repository
- Add the composer repository to the configuration by running
composer config repositories.repo.magento.com composer https://repo.magento.com/ - Install the module composer by running
composer require rw-infotech/hello-world - enable the module by running
php bin/magento module:enable RWInfotech_HelloWorld - apply database updates by running
php bin/magento setup:upgrade* - Flush the cache by running
php bin/magento cache:flush