Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 3.44 KB

CONTRIBUTING.md

File metadata and controls

51 lines (27 loc) · 3.44 KB

Contributing to Serverlessly

Thanks for showing interest to improve Serverlessly. Your contribution will be appreciated.

The following is a set of guidelines for contributing to Serverlessly. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

Prerequisites

How and What to Contribute

Setting up development environment

  1. Fork this repo.

  2. Clone the forked repo.

  3. Install Yarn if it's not already installed (npm is NOT supported).

  4. Run yarn command which will setup your environment.

For best experience, use Visual Studio Code IDE & install all extensions recommended by this project.

Before opening Pull Request on GitHub

Run the following command & make sure that everything checks out okay:

yarn test && yarn lint && yarn format

Pull Request

It's always useful to communicate in advance through Serverlessly Discussions, because sometimes, someone is already working in this space, so maybe it's worth collaborating with them instead of duplicating the efforts.

Pull Request titles are required to follow Serverlessly Commit specification which extends Conventional Commit specification and overrides types enum. For example, type build, ci from Conventional Commit specification have been replaced with devops. Complete set of types & scopes can be found here.

It's a good idea to indicate that work is in progress before you're ready to merge. This can be done by putting 🚧 emoji, WIP or Work in Progress (usually as suffix) in the PR title.

If the PR fixes a bug, write "Fixes #123" in the body without quotes where 123 is issue number. If an issue doesn't exist for the bug, create that first. If the PR implements a feature, write "Closes #123" in the body without quotes where 123 is issue number.