This project is a part of Applied Software Engineering - 1 ( ASE ) Course at IIIT Sri City. The project provides a platform for home entrepreneurs who want to cook and earn. It also helps users in finding volunteers to help for an event.
You can find our project live here
If you find the project interesting and have ideas for the project or have found bugs in the project, feel free to raise an issue.
An issue must be created for any feature addition or bug fixation. It should be labelled accordingly. Developers working on a particular issue must create a branch and commit changes in that branch. Further, a pull request from that branch must be made to the master branch of this repository for merging. Following are the steps that have to be strictly followed for contributing to this project
git clone https://github.com/<your_username>/HOMECHEF.git
git remote add upstream https://github.com/Rukmini-Meda/HOMECHEF.git
4. Verify remote - upstream URL should refer to this repository and origin should refer to your fork
git remote -v
Checkout to master branch
git checkout master
Fetches from upstream and origin and prunes any deleted branches
git fetch --all --prune
Reset the head to the last commit in the upstream's master repo
git reset --hard upstream/master
Push these changes to origin so that both fork and local repos are made up to date
git push origin master
git checkout -b <new-branch-name>
git branch -v
git add *
or
git add .
or
git add <file-or-folder-name>
git commit -m <commit-message>
git push origin head