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/.env
and./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-backend
cd client
npm install
npm start
cd server
npm install
npm start