Skip to content

Latest commit

History

History
63 lines (41 loc) 路 2.72 KB

CONTRIBUTING.md

File metadata and controls

63 lines (41 loc) 路 2.72 KB

Contributing

When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. Please note we have a code of conduct, please follow it in all your interactions with the project.

Development environment setup

To set up a development environment, please follow these steps:

  1. Clone your repo

    git clone [YOUR_REPOSITORY_URL]
  2. Install all the packages.

    yarn add
  3. Start the development Server.

    yarn dev

Commit message rules

Consider following the below format for the commit message:

Commit Type : feat|fix|perf|refactor|test|ci|docs|build|chore

Examples

  • feat: when create new feature.
  • style: when styling a this application.
  • fix: when fixing a bug.

Issues and feature requests

You've found a bug in the source code, a mistake in the documentation or maybe you'd like a new feature? You can help us by submitting an issue on GitHub. Before you create an issue, make sure to search the issue archive -- your issue may have already been addressed!

Please try to create bug reports that are:

  • Reproducible. Include steps to reproduce the problem.
  • Specific. Include as much detail as possible: which version, what environment, etc.
  • Unique. Do not duplicate existing opened issues.
  • Scoped to a Single Bug. One bug per report.

If you have any great ideas of Feature Request, please avoid adding it to the Issues section in Github and instead start a new Discussion on Github. This allows the maintainers and the member a common place to discuss about the Request. Make sure to check if your request or idea has already been discussed or closed to avoid duplication.

Even better: Submit a pull request with a fix or new feature!

How to submit a Pull Request

  1. Search our repository for open or closed Pull Requests that relate to your submission. You don't want to duplicate effort.
  2. Fork the project.
  3. Create your feature branch (git checkout -b feat/amazing_feature).
  4. Commit your changes (git commit -m 'feat: add amazing_feature'). Please follow the specification mentioned above for your commit messages.
  5. Push to the branch (git push origin feat/amazing_feature).
  6. Open a Pull Request.
  7. Make sure to fill in the all the details in the Pull Request to make it easier for the reviewers. Make sure to refer to any discussion or Issues that your PR is fixing.