This is a Web application that will let you find things about your Spotify profile you didn't know about.
git clone git@github.com:pameck/spotify-profile-explorer.git
-
Go to Spotify Dev Website and create an application.
-
Create your own
config/application.yml
and set the values for the following variables. (checkconfig/application.yml.example
). Keep your application.yml private, do not commit it.
SPOTIFY_CLIENT_ID: "The one given by Spotify when you created your app"
SPOTIFY_SECRET: "The one given by Spotify when you created your app"
SPOTIFY_REDIRECT_URL: "The one you set on Redirect URIs when you created your app"
Requires docker-machine and docker-compose
-
Install VirtualBox, I did it with Brew Cask
brew cask install viritualbox
-
Install Docker ToolBox (installs docker, docker-machine and docker-compose)
brew cask install docker-toolbox
-
Create a docker machine
docker-machine create --driver virtualbox default
-
Export docker env variables
eval "$(docker-machine env default)"
cd spotify-profile-explorer && docker-compose build
docker-compose up
add --build in case you made changes to the code
docker-compose run web rake test