Skip to content

ashwithpoojary98/AsyncCodingHub

Repository files navigation

AsyncCoding Hub

AsyncCodingHub is an innovative platform for software enthusiasts and professionals to explore and share knowledge through software-related blogs. It provides an opportunity for users to contribute their own topics, building a vibrant and collaborative open-source community.

Features

  • Explore Blogs: Access a wide range of blogs covering various aspects of software development.
  • Contribute Topics: Share your expertise by submitting your own blog topics.
  • Open-Source Collaboration: Foster a community-driven approach to software knowledge.
  • User-Friendly Interface: Enjoy a seamless and engaging experience while browsing and contributing.

Open Source Love GitHub stars PRs Welcome GitHub forks


Contributing

We welcome contributions from the community! Here’s how you can help:

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button on the top right of the repository page to create a copy of the project under your GitHub account.
  2. Clone Your Fork:

    • Clone your forked repository to your local machine:
      git clone https://github.com/ashwithpoojary98/AsyncCodingHub.git
    • Navigate to the project directory:
      cd AsyncCodingHub
  3. Create a Branch:

    • Create a new branch for your feature or bug fix:
      git checkout -b your-branch-name
  4. Make Changes:

    • Make your changes in your branch. Be sure to follow the coding style and guidelines of the project.
  5. Commit Your Changes:

    • Stage your changes:
      git add .
    • Commit with a clear and descriptive message:
      git commit -m "Add a feature or fix a bug"
  6. Push to Your Fork:

    • Push your changes back to your fork:
      git push origin your-branch-name
  7. Create a Pull Request:

    • Go to the original repository where you want to contribute. You should see a prompt to create a pull request for your branch.
    • Click "Compare & pull request."
    • Provide a clear title and description for your pull request, explaining the changes you made and why they are necessary.

Guidelines

  • Code Style: Follow the coding conventions used in the project. If you’re unsure, check existing code for guidance.
  • Testing: If applicable, add tests for your new features or bug fixes. Ensure all tests pass before submitting your pull request.
  • Documentation: Update documentation if your changes introduce new features or alter existing ones.