From a82c8dcd64b6039569ef750c81f3d915365c6ca1 Mon Sep 17 00:00:00 2001 From: PLUJA <64632615+pluja@users.noreply.github.com> Date: Fri, 21 May 2021 18:15:06 +0200 Subject: [PATCH] Add Contributing guide --- misc/CONTRIBUTING.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 misc/CONTRIBUTING.md diff --git a/misc/CONTRIBUTING.md b/misc/CONTRIBUTING.md new file mode 100644 index 0000000..ad49005 --- /dev/null +++ b/misc/CONTRIBUTING.md @@ -0,0 +1,37 @@ +# Contributing Guide + +## Pull Requests + +If you are familiar you can add a *section* or a *service* yourself via **pull request**. This is the better way. + +If you are not familiar with Github and PRs you can open a new issue and explain what you want to add there. + +### Adding a new section +To add a new section copy the following template and complete with the information: + +``` +## Section Title + + **Avoid**: +[OPTIONAL EXPLANATION OF WHY THESE SERVICES ARE BAD] +* Bad Service 1 +* Bad Service 2 +* Bad Service 3 + + **Instead use:** +[OPTIONAL EXPLANATION OF WHY THESE SERVICES ARE GOOD] +* [Good Service 1](https://link-to-source-or-page1) - Little description of the service +* [Good Service 2](https://link-to-source-or-page2) - Little description of the service +* [Good Service 2](https://link-to-source-or-page3) - Little description of the service +``` +You also need to add the section to the **Table of Contents (Index)** at the top of the document: + +`* [Section Title](#section-title)` + +### Adding a new service + +To add a new service just take the following template and add it to the section where it belongs: + +`* [Service Name](https://link-to-source-or-page) - Little description of the service` + +> You can add either a *good* (use) or a *bad* (avoid) service.