CS546 final project This is a project for our CS546 Web application, pull the request if you need.
Team Winnebago, Alaska
##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
##First use instructions: Make sure you have installed node.js version v6.1.0 or above.
install necessary modules, using command line:
$npm install
go to the file's tasks repository, using shell command as follow:
$cd Music-recommendation/tasks/
run the seed script using following command:
$node seed.js
After initialization, it will diplay "done" in the shell window, then you can use cmd+c in Mac or ctrl+d in window to end the seed file.
in the shell window, type in the following command to run the project:
$npm start