Skip to content

Contributing.md

SE. kelvin edited this page Sep 12, 2025 · 3 revisions

🀝 Contributing

We welcome contributions! πŸŽ‰
Please follow the steps and guidelines below to ensure a smooth process.


πŸ”§ Contribution Workflow

1. Create a Branch

Always work on a separate branch for your feature or fix:

git checkout -b feature/my-feature

### 2. Make Your Changes
 - Keep your code clean and well-documented.
 - Follow existing project structure and style.

### 3. Commit Your Changes
- Write clear, descriptive commit messages:
- git commit -m "Add user profile page"

### 4. Push Your Branch
```bash
git push origin feature/my-feature

5. Open a Pull Request (PR)

  • Go to the original repository.
  • Open a PR from your fork/branch.
  • Provide a clear description of your changes.

πŸ“ Contribution Guidelines

  • Commit Messages β†’ Use meaningful commit messages (e.g., Fix login bug instead of Update file).

  • Focused PRs β†’ Keep pull requests small and focused β€” one feature or fix at a time.

  • Documentation β†’ Update documentation if your changes affect usage or APIs.

  • Code Style β†’ Follow the coding standards already in the project.

Testing β†’ Ensure your changes do not break existing functionality.

πŸ“œ Code of Conduct

To maintain a welcoming and productive environment, all contributors are expected to follow these principles:

  • Be respectful and considerate to others.

  • Provide constructive feedback during code reviews.

  • Avoid offensive or discriminatory language.

  • Collaborate in good faith and with a positive attitude.

For more details, see the full Code of Conduct if available.

✨ Thank you for contributing and helping this project grow! Your efforts make a big difference.

Clone this wiki locally