Skip to content

Latest commit

 

History

History
69 lines (50 loc) · 1.96 KB

README.md

File metadata and controls

69 lines (50 loc) · 1.96 KB

Yves Wienecke
Steven Borrego

http://cs465-mood-music.appspot.com

CS465 Final Project - Mood Music

Synthesia is a peculiar medical condition that combines senses together.

A person may:

  • Hear a sound and see a color
  • Smell something and hear a sound
  • See a word and taste a flavor

This project is meant to be a representation of what Synthesia might look like to those who have it.

  1. Enter a song or playlist
  2. We calculate a color for each song
  3. Visualize your data!

This project uses an express backend, bootstrap frontend, and the Spotify api.

Create a .env file in the root directory with the following information from the Spotify API:

CLIENT_ID=client_id_from_spotify
CLIENT_SECRET=secret_from_spotify

Visualization of git branch management..

// Create a development branch for ongoing features
git branch develop
git push -u origin develop
// Track changes from an existing branch (after develop branch is created)
git checkout --track origin/develop
// Delete a branch
git branch -d branch_to_delete
// Change current branch to 'develop' and create a branch for a new feature
git checkout develop
git checkout -b feature_branch
// When done with a feature branch
git checkout develop
git merge feature_branch

API references