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.
- Host: GitHub
- URL: https://github.com/cheshire137/playlisdit
- Owner: cheshire137
- License: mit
- Created: 2017-12-26T18:31:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T00:10:19.000Z (over 8 years ago)
- Last Synced: 2025-04-15T16:29:29.947Z (about 1 year ago)
- Topics: music, playlist-generator, react, reddit-api, spotify-api, spotify-playlist
- Language: JavaScript
- Homepage:
- Size: 834 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Playlisdit
Create Spotify playlists from songs posted on Reddit.

## 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
```