Skip to content

Latest commit

 

History

History
51 lines (35 loc) · 1.59 KB

File metadata and controls

51 lines (35 loc) · 1.59 KB

Contributing to Keip Canvas

First off, thank you for your interest in contributing! 🎉

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

How Can I Contribute?

Reporting Bugs

If you find a bug, please report it by opening a GitHub Issue. When you do so, please include:

  • A clear and descriptive title.
  • Steps to reproduce the problem.
  • Expected behavior and actual behavior.
  • Any relevant logs or screenshots.

Suggesting Enhancements

Enhancements or new features can also be proposed by opening an issue. Please describe:

  • The enhancement you are suggesting.
  • Why you believe this enhancement would be beneficial.
  • Any relevant examples or references.

Pull Requests

  1. Fork the repository and clone it locally.

  2. Create a new branch from main:

    git checkout -b feature/your-feature-name
  3. Make your changes.

  4. Commit your changes, including a descriptive commit message following the Conventional Commit style. Example:

    git commit -m "feat(ui): description of a new ui feature (Issue # if present)"

    See the project's commit log for more examples.

  5. Push to your fork and submit a pull request:

    git push origin feature/your-feature-name
  6. Ensure the pull request description clearly describes the problem and solution. Include the issue number if applicable.