Build Status

Spotify Profile Explorer

This is a Web application that will let you find things about your Spotify profile you didn't know about.

Installation

Clone the repository

git clone git@github.com:pameck/spotify-profile-explorer.git

Register your App in Spotify

  1. Go to Spotify Dev Website and create an application.

  2. Create your own config/application.yml and set the values for the following variables. (check config/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"

Install with Docker (Instructions for OSX)

Requires docker-machine and docker-compose

  1. Install VirtualBox, I did it with Brew Cask
    brew cask install viritualbox

  2. Install Docker ToolBox (installs docker, docker-machine and docker-compose)
    brew cask install docker-toolbox

  3. Create a docker machine
    docker-machine create --driver virtualbox default

  4. Export docker env variables
    eval "$(docker-machine env default)"

Build the application (from inside the application folder)

cd spotify-profile-explorer && docker-compose build

Run the application

docker-compose up

add --build in case you made changes to the code

Run the tests

docker-compose run web rake test