Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 728 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 728 Bytes

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