Skip to content

kai-wei-mo/spotify-rewind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 

Repository files navigation

spotify-rewind

This React and Express app uses the Spotify Web API to display a Spotify user's top tracks, playlists, and artists.

Check it out at https://spotifyrewind.dev/! 🎉🎉🎉

OG image preview

Local Development

  • add your Spotify Developer keys to ./client/.env and ./server/.env

With Docker

docker build -t kaiweimo/spotify-rewind-frontend ./client
docker run -d -p 3000:3000 kaiweimo/spotify-rewind-frontend

docker build -t kaiweimo/spotify-rewind-backend ./server
docker run -d -p 8888:8888 kaiweimo/spotify-rewind-backend

With Node

cd client
npm install
npm start
cd server
npm install
npm start