Skip to content

Latest commit

 

History

History
81 lines (59 loc) · 2.32 KB

CONTRIBUTING.md

File metadata and controls

81 lines (59 loc) · 2.32 KB

🚀 Contributing to Code 365

Thank you for your interest in contributing to Code 365! 🎉 We welcome all contributions, whether it’s new features, bug fixes, documentation improvements, or community support.

Please follow the guidelines below to ensure a smooth contribution process.


🛠️ How to Contribute

1️⃣ Fork & Clone the Repository

First, fork the repository to your GitHub account and clone it locally:

git clone https://github.com/Rohith2201/Code365
cd Code365

2️⃣ Set Up the Project

Install dependencies:

npm install

Start the development server:

npm run dev

Open http://localhost:3000/ in your browser.


🎯 Adding a New Feature or Fixing a Bug

  1. Create a new branch for your changes:

    git checkout -b feature-name
  2. Make your changes and commit them:

    git commit -m "Added feature: short description"
  3. Push the branch to your forked repo:

    git push origin feature-name
  4. Open a Pull Request (PR):

    • Go to Pull Requests in the main repo.
    • Click New Pull Request and select your branch.
    • Add a clear description of your changes.
    • Submit for review! 🎉

🔍 Code Style & Guidelines

✔️ Follow Best Practices – Write clean, readable, and maintainable code.
✔️ Use Meaningful Commit Messages – Clearly describe your changes.
✔️ Keep PRs Focused – Solve one issue or feature per PR.
✔️ Test Before Submitting – Ensure your code doesn’t break existing functionality.


📝 Reporting Issues

If you find a bug or have a suggestion, open an Issue:

  • Go to the Issues tab.
  • Click New Issue and provide:
    • A clear title and description.
    • Steps to reproduce (if applicable).
    • Screenshots/logs (if applicable).

📜 License

By contributing, you agree that your contributions will be licensed under the MIT License. See LICENSE for details.


💙 Thank you for helping improve Code 365! Let's build an amazing learning platform together! 🚀🔥