Skip to content

Latest commit

 

History

History
80 lines (52 loc) · 3.71 KB

CONTRIBUTING.md

File metadata and controls

80 lines (52 loc) · 3.71 KB

Welcome to genezio contributing guide

First of all, welcome to genezio and thank you for investing your time in contributing to our project!

In this guide you will get an overview of the contribution workflow from opening an issue, creating a PR and merging the PR.

New contributor guide

To get an overview of the project, read the README. Here are some resources to help you get started with open source contributions:

Getting started

Issues

Create a new issue

If you spot a problem with the docs, search if an issue already exists. If a related issue doesn't exist, you can open a new issue](https://github.com/Genez-io/genezio/issues/new).

Solve an issue

Scan through our existing issues to find one that interests you. You can narrow down the search using labels as filters.

Genezio setup

To test your solution on your machine to an existing issue you need to set up genezio. Follow the steps below:

Fork this repository and clone it on your machine.

To run the steps below, you should have npm and node installed on your machine. Tip: You can check out nvm to manage node installations.

Clone the forked repository on your machine:

git clone <forked_repository>
cd genezio

Checkout into our dev branch for the latest features:

git remote add upstream https://github.com/genez-io/genezio
git fetch upstream
git checkout -b dev upstream/dev

Install genezio and its dependencies:

npm install
npm run install-locally-dev
genezio login
genezio --help

Each time you modify the genezio codebase, rerun npm run install-locally-dev to build the latest source code.

Pull Request

When you're finished with the changes, create a pull request, also known as a PR.

  • Add a relevant description to your PR describing what changes have you made.
  • Don't forget to link PR to issue if you are solving one.
  • Enable the checkbox to allow maintainer edits so the branch can be updated for a merge.
  • Once you submit your PR, a team member will review your proposal. We may ask questions or request additional information.
  • We may ask for changes to be made before a PR can be merged using suggestions or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch.
  • As you update your PR and apply changes, mark each conversation as resolved.
  • If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.

Your PR is merged!

Congratulations 🎉🎉 The genezio team thanks you ✨.

Once your PR is merged, your contributions will be publicly visible on the repository.