Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 2.22 KB

contributing.md

File metadata and controls

65 lines (46 loc) · 2.22 KB

Contributing to Trizy

First off, thank you for considering contributing to Trizy! 🎉 Your help is greatly appreciated and will help improve the project for everyone.

Table of Contents

How Can I Contribute?

Reporting Bugs

If you find a bug in the Trizy application, please open an issue describing the problem in detail. Make sure to include:

  • A clear and descriptive title.
  • A description of the steps to reproduce the issue.
  • What you expected to happen.
  • What actually happened.
  • Screenshots or logs, if applicable.

Suggesting Enhancements

Have an idea to improve Trizy? Open an issue and describe your suggestion in detail. Please include:

  • A clear and descriptive title.
  • A detailed description of the enhancement.
  • Any relevant examples or use cases.

Your First Code Contribution

Unsure where to start? You can help out by looking through the issues labeled "good first issue".

Pull Requests

  1. Fork the Repository
    Click the "Fork" button at the top right of the repository page to create your own fork of the project.

  2. Clone Your Fork

    git clone https://github.com/your-username/TrizyApp.git`
    
  3. Create a Branch

    git checkout -b feature/your-feature-name
    
  4. Make Changes Implement your changes. Ensure that your code follows the project’s coding style and guidelines.

  5. Commit Your Changes

    git commit -m "Add feature X to improve Y"
    
  6. Push to Your Fork

    git push origin feature/your-feature-name
    
  7. Open a Pull Request Go to the original repository and click the “Compare & pull request” button. Provide a clear description of your changes and reference any related issues.