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/! ๐๐๐
- add your Spotify Developer keys to
./client/.envand./server/.env
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-backendcd client
npm install
npm startcd server
npm install
npm start