benrockehenderson / setlistconverter

Convert any setlist from setlist.fm to a Spotify playlist

Home Page:https://setlistconverter.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Setlist.fm to Spotify Playlist Converter

License: MIT

Use now at setlistconverter.com!

Want to be prepared for your next concert? Use this tool to convert any setlist from setlist.fm to a Spotify playlist; automatically added to your library.

Getting Started

Prerequisites

  • Docker
  • Yarn

Setup

  1. Clone the repository:

    git clone https://github.com/benrockehenderson/setlistconverter
  2. Navigate to the project folder and generate the Tailwind CSS styles:

    yarn tailwindcss -o static/dist/css/output.css
  3. Create a .env file based on .env.example:

    Copy the .env.example file to a new file named .env and fill in the values:

    SETLIST_FM_API_KEY=...
    SPOTIFY_CLIENT_ID=...
    SPOTIFY_CLIENT_SECRET=...
    REDIRECT_URI=...
    

    Make sure to set the REDIRECT_URI in your Spotify developer console to match the one specified in your .env file. Otherwise Spotify will not permit the redirect.

  4. Build the Docker image:

    docker build -t setlistfm-spotify-converter .
  5. Run the Docker container:

    docker run -p 5000:5000 --env-file .env setlistfm-spotify-converter

Deployment

setlistconverter.com is deployed on Google Cloud Run, however you may choose to deploy your container on any platform you wish. Make sure

Contributing

Feel free to create pull requests! I would love to make the converter more accurate over time - especially improved Spotify song searching algorithms.

License

This project is licensed under the MIT License - see LICENSE.

About

Convert any setlist from setlist.fm to a Spotify playlist

https://setlistconverter.com

License:MIT License


Languages

Language:Python 65.9%Language:HTML 28.0%Language:CSS 2.6%Language:Dockerfile 2.4%Language:JavaScript 1.1%