docs/content/en/project/contributing/_index.md
Please do! Thanks for your help! 🎈 Meshery is community-built and welcomes collaboration. Contributors are expected to adhere to the CNCF's Code of Conduct.
Meshery and it's various architectural components are written in different languages, including Golang, Javascript (React.js and Next.js) To make building, testing, and the experience of contributing consistent across all Meshery components, a Makefile is included in the every repository. These make targets are what you will use to build, run, test, and document.
To contribute to Meshery, please follow this basic fork-and-pull request gitflow.
<details> <summary>Adding your sign-off on commits (Developer Certificate of Origin)</summary> <ul> <li> To contribute to this project, you must agree to the Developer Certificate of Origin (DCO) for each commit you make. The DCO is a simple statement that you, as a contributor, have the legal right to make the contribution. </li> <li> See the <a href="https://developercertificate.org"> DCO </a> file for the full text of what you must agree to and how it works <a href="https://github.com/probot/dco#how-it-works">here</a>. To signify that you agree to the DCO for contributions, you simply add a line to each of your git commit messages: <pre><code> Signed-off-by: Jane Smith <[email protected]> </code></pre></li> <li> In most cases, you can add this signoff to your commit automatically with the <code>-s</code> or <code>--signoff</code> flag to <code>git commit</code>. You must use your real name and a reachable email address (sorry, no pseudonyms or anonymous contributions). An example of signing off on a commit: <pre><code>$ git commit -s -m “my commit message w/signoff”</code></pre> </li> <li> To ensure all your commits are signed, you may choose to add this alias to your global <code>.gitconfig</code>:~/.gitconfig
<pre><code> [alias] amend = commit -s --amend cm = commit -s -m commit = commit -s </code></pre>Or you may configure your IDE, for example, VSCode to automatically sign-off commits for you:<a href="https://user-images.githubusercontent.com/7570704/64490167-98906400-d25a-11e9-8b8a-5f465b854d49.png" ></a>
</li> </ul> </details>Here is a complete list of all of Meshery's contributing guides from Server to UI to CLI to Extensions and so on.