Create a basic template for Opencart module using Robo
#Clone the repository
$ git clone https://github.com/nursanamar/OpenCart-module-generator.git
$ cd OpenCart-module-generator
#Install dependecies
$ composer install
#.env file
$ cp .env.example .env
Setup your .env file
$ vendor/bin/robo module:newGenerate controller,model,view,etc files in src
$ vendor/bin/robo module:installCopy all file form src/upload into your Opencart directory (from your .env file)
$ vendor/bin/robo module:watchWacth any changes in src/upload and copy changed files into Opencart directory (from your .env file)
$ vendor/bin/robo module:buildGenerate ocmod file in build folder, add --with-obf option to build the obfuscated version of your ocmod
$ vendor/bin/robo module:deployUpload generated ocmod file to the store