An open API service indexing awesome lists of open source software.

https://github.com/cheshire137/playlisdit

Create Spotify playlists from songs, albums, artists, and other playlists posted on Reddit.
https://github.com/cheshire137/playlisdit

music playlist-generator react reddit-api spotify-api spotify-playlist

Last synced: about 1 year ago
JSON representation

Create Spotify playlists from songs, albums, artists, and other playlists posted on Reddit.

Awesome Lists containing this project

README

          

# Playlisdit

Create Spotify playlists from songs posted on Reddit.

![Screenshot](https://raw.githubusercontent.com/cheshire137/playlisdit/master/screenshot.png)

## How to Develop

[Create a Spotify app](https://developer.spotify.com/my-applications).
Modify src/config.json to have your app's client ID. Add `http://localhost:3000/`
as a redirect URI to your Spotify app.

```bash
yarn install
npm start
open http://localhost:3000/
```

Use `yarn add [package-name]` to install packages.

## How to Deploy to Heroku

Modify your Spotify app so it has your Heroku app's URL as a redirect URI, e.g.,
`https://your-heroku-app.herokuapp.com/`.

```bash
heroku git:remote -a your-heroku-app
heroku buildpacks:add https://github.com/mars/create-react-app-buildpack.git
git push heroku master
```