Yves Wienecke
Steven Borrego
http://cs465-mood-music.appspot.com
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.
- Enter a song or playlist
- We calculate a color for each song
- 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
// 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