RoadieSounds is a really simply way to discover new live music, especially while you're travelling. This was a final project for a Lighthouse Labs Cohort in 2017.
Going through concert listing for bands you are unfamiliar with can be tedious and time consuming to find a concert you might be interested in going to. Instead of simply reading through concert listings, RoadieSounds lets you listen to them.
Simply enter the cities you are interested in attending concerts in, and the genres you like. RoadieSounds will not only return the concert listings for those time periods, but it will generate a playlist for you that you can save to Spotify.
Now you can listen to that playlist, and if there is a band you like, you can simply return and buy tickets for that concert!
Experience live music listings, instead of reading them!
This is the main page where users can enter up to 5 destinations, and their travel dates for each. The cities are autocompleted with Google Maps API and the date selector is designed to be effortless.
After selecting travel dates, users select the genres they are most interested in.
After querying the Eventful and Spotify API, a list of concerts is generated for each city along with the top tracks for each artist within that list. The results can be viewed by clicking each dropdown for each city.
The concerts and playlist are displayed here. Users can view the concert information or buy tickets. Below is the generated playlist with the top tracks of artists playing during the time. Users can either preview tracks directly (if Spotify provides a preview link), or can save their playlist that was generated to Spotify.
In order to save a playlist to Spotify users first need to grant Oauth access to their Spotify account.
To initialize this repo:
clone
the reponpm install
npm run dev:server
- visit 0.0.0.0:3000 in browser
- The sever will refresh whenever changes are made to any app files
psql -d template1
- You may need to use the superuser login eg.-U vagrant
CREATE ROLE <username> WITH LOGIN password '<password>';
Set your username and passwordCREATE DATABASE <dbname> OWNER <role_username>;
Create a database name, and set owner to the role username you just created.- Copy and configure your .env with the DB info you just created and
- Run
npm run knex migratate:latest
You'll need unique API keys to use this for Eventful and Spotify.
Go to both sites developer/API portals and request credentials and update your .env file where there are empty placeholders.
npm run dev:nodemon
- Everytime a server-side change is made, a new build will be created, so this process is a bit slower.
npm run prod:build
npm run prod:server
- visit 0.0.0.0:3000 in browser
- Currently Oauth isn't always working. It's a know bug that we're working on.
- Smaller cities, or cities with no results won't work because of the limits on the API
- Some user interactions don't have feedback such as saving the playlist. We'll add these later once we fix the above issues.