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.
- Fork the Project
- Clone your forked repository
git clone https://github.com/<your_github_username>/OSoC-Swayam-Bazaar.git
-
Now go ahead and create a new branch and move to the branch
git checkout -b fix-issue-<ISSUE-NUMBER>
-
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
or
git add .
git add <file_name1> <file_name2>
- Commit your changes
git commit -m "<EXPLAIN-YOUR_CHANGES>"
-
Push your changes
git push origin fix-issue-<ISSUE-NUMBER>
-
Open a Pull Request
Wait for the PR to be reviewed and merged.
Happy Coding!