Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 2.38 KB

CONTRIBUTION.md

File metadata and controls

80 lines (57 loc) · 2.38 KB

Contribution Guidelines

Thank you for considering contributing to the Recipe with Voice Command project! Your contributions help make this project better for everyone.

How to Contribute

1. Fork the Repository

  • Click on the Fork button at the top of this repository to create a copy under your GitHub account.

2. Clone Your Fork

$ git clone https://github.com/Tanjemul/recipe-with-voice-command.git

3. Create a New Branch

Create a feature branch for your work:

$ git checkout -b feature/<feature-name>

4. Make Changes

  • Implement your changes or fixes.
  • Follow the Coding Standards
  • Test your changes to ensure they work as expected.

5. Commit Your Changes

Commit your changes with a clear and descriptive commit message:

$ git add.
$ git commit -m "Add feature: <feature description>"

6. Push to Your Fork

Push your branch to your forked repository:

$ git push origin feature/<feature-name>

7. Create a Pull Request

  • Go to the original repository on GitHub.
  • Click on Pull Requests > New Pull Request.
  • Select your feature branch and provide a clear description of your changes.

The project maintainers will review your pull request and may suggest changes before it is merged.


Coding Standards

  • Code Style: Follow industry-standard coding practices and naming conventions.
  • Documentation: Add comments and update relevant documentation for new or changed features.
  • Testing: Ensure your changes are covered with appropriate tests.
  • Commit Messages: Use clear and concise messages describing the purpose of the commit.

Reporting Issues

If you encounter a bug or have a feature request, please create an issue and include:

  • A clear and descriptive title.
  • Steps to reproduce the issue.
  • Expected and actual behavior.
  • Screenshots or logs, if applicable.

Code of Conduct

This project adheres to the Contributor Covenant Code of Conduct. By participating, you agree to uphold this code.


Contact

If you have any questions or need further clarification, feel free to reach out:


We appreciate your interest in contributing to the project.