Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 847 Bytes

PULL_REQUEST_TEMPLATE.md

File metadata and controls

41 lines (32 loc) · 847 Bytes

📝 Guide to add a new module

Step 1

Make sure you are on master branch

Step 2

  • Open modules.yml file.
  • Find the appropriate topic and sub-topic for you module. For example, assuming that you want to share an awesome gateway, you need to go:
services:
  title: Services

  gateway:
    title: Gateway
    entries:
      # Add you module here
  • Create new entry using this format
- name: my-awesome-module-name
  link: https://www.link-to-my-repo.com
  desc: String that supports Markdown syntax.
  author: Your Name

Note:

If your desc: starts with a special char please add an escape char (\)

Example of an INVALID desc::

desc: [MoleculerJS](https://moleculer.services/)

Example of a VALID desc::

desc: \[MoleculerJS](https://moleculer.services/)