CS546 final project This is a project for our CS546 Web application, pull the request if you need.
##Contribution guide To contribute to the project first fork the repository.
Then to get the project into your local repository, using command line:
$ git clone https://github.com/vincivans/Music-recommendation
Then to set the new remote using command line:
$ git remote add origin https://github.com/vincivans/Music-recommendation
Then to verify the new remote URL, use:
$ git remote -v
After all the process, you have succeed on track the project.
To add files in the local repository and stages them for commit:
$ git add filename
To commit the tracked changes:
$ git commit -m "Commit content"
To merge the local files to the original master(to upload your contributions to this project):
$ git push origin master