670 B
670 B
How to contribute your own modules?
- Do not make your modules harmful.
- Add documentation with a name of MODULE_{MODULE_NAME}.md in the
/doc
directory. - Your documentation should look something like this:
# Module - {MODULE_NAME}
{WHAT THE MODULE DOES}
{CODE BLOCK START}
NAME: {MODULE_NAME}
DEPENDENCIES: {MODULE DEPENDENDENCIES}
TYPE: {MODULE TYPE (I.e bash script, shell script, python script, ...)}
{CODE BLOCK END}
## Setup
{HOW TO SET IT UP}
{EXTRA STUFF}
- Your module's main function has to be named
b{MODULE_NAME}
. for example if the module is namedhi
the main function should bebhi
. - Test your modules before committing