Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 1.94 KB

File metadata and controls

57 lines (49 loc) · 1.94 KB

Contribution Guide

Thank you for your interest in the AiToEarn project! We welcome all forms of contributions, including but not limited to bug reports, feature requests, code improvements, and documentation enhancements.

Table of Contents

Code of Conduct

Please follow our code of conduct to ensure all participants can communicate in an open and friendly environment.

Development Environment Setup

  1. Fork the project to your own GitHub account
  2. Create a feature branch:
git checkout -b feature/your-feature-name
  1. Commit your changes:
git add . 
git commit -m "feat: add new feature"
  1. Push to your forked repository:
git push origin feature/your-feature-name
  1. Create a Pull Request on GitHub

Reporting Bugs

  1. Ensure the bug has not been reported in other issues
  2. Create a new issue and include the following information:
  • Title describing the bug
  • Detailed description of the bug
  • Steps to reproduce the bug
  • Screenshots (if available)
  • Other information (such as error logs, stack traces, etc.)

Suggesting New Features

  1. Ensure the feature has not been requested in other issues
  2. Create a new issue and include the following information:
  • Title describing the new feature
  • Detailed description of the new feature
  • Screenshots (if available)

Code Review

  1. Create a pull request
  2. Wait for other contributors to review the code
  3. Modify the code and commit the new changes
  4. Push the new commits to your forked repository
  5. Ensure the pull request is merged into the main repository