Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 3.39 KB

README.md

File metadata and controls

66 lines (49 loc) · 3.39 KB

Swayam-Bazaar

Static Badge Static Badge Static Badge

GitHub contributors GitHub forks GitHub Repo stars GitHub issues

About the Project

This web application aims to connect users with local vendors in their area, allowing them to purchase groceries and other goods directly from these vendors. Unlike the existing local application called City Mall, which doesn't offer the option to buy from specific shops, this application will enable users to select the shops they prefer. The main goal is to establish a direct connection between users and local shops for purchasing goods. For instance, if a user wants to buy flour from a particular local shop that isn't a well-known brand but offers high-quality and affordable flour, this application will assist them in doing so. To address the challenge of gathering a comprehensive dataset, we propose a solution where shopkeepers themselves can input their goods into the application. This approach is similar to how Google Maps allows users to add new places they discover to the database. In summary, the application will have two separate logins: one for users and another for shopkeepers.

Tech Stack

Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge Static Badge

Contributing

  1. Fork the Project
  2. Clone your forked repository
 git clone https://github.com/<your_github_username>/OSoC-Swayam-Bazaar.git
  1. Now go ahead and create a new branch and move to the branch

    git checkout -b fix-issue-<ISSUE-NUMBER>
  2. After you have added your changes, follow the following command chain

    • Check the changed files
     git status -s
    • Add all the files to the staging area
      git add .
      or
      git add <file_name1> <file_name2>
    • Commit your changes
     git commit -m "<EXPLAIN-YOUR_CHANGES>"
  3. Push your changes

    git push origin fix-issue-<ISSUE-NUMBER>
  4. Open a Pull Request

  • Wait for the PR to be reviewed and merged.

  • Happy Coding!