Music Recommendation System based on the emotion from the camera feed
- BRANCH CREATION RULE
- Go to this link and find the issues assigned to you.
- Create a new branch for each issue. The name of your branch should follow the following rule : [LABEL (lowercase)]/[ISSUE #]-[TITLE (all lowercase letters and words separated by hyphen(-))].
- That is, if the TITLE of the issue #8 is Profile - Development and LABEL assigned to this issue is Feature, then the branch name should be feature/8-profile-development
- Perform all the development activities in this branch and raise PRs accordingly with proper commit message and description along with screenshots, images (if necessary)
- RULES FOR PULL REQUEST (PR) RAISE
- Use proper commit message describing the tasks performed in the commit.
- Treat
master
branch as your master branch, i.e. all your PRs should usemaster
as the target branch. e.g.git push origin YOUR_BRANCH_NAME
and then usemaster
as the target branch while creating PRs.
- PROJECT SETUP (FOR DEVELOPMENT)
- Clone the repo using
git clone https://github.com/CYBORG-NIT-ROURKELA/music-recommendation-system
- Run
git fetch
- Checkout to your specific branch using
git checkout -b YOUR_BRANCH_NAME
- Start development