This project is part of John Crickett's Coding challenges.
https://codingchallenges.fyi/challenges/challenge-spotify
This is a simple Spotify client that uses the Spotify API to show profile, list playlists and a simple web player to play songs.
# Install dependencies
npm ci
Create a .env.local
file in the root of the project and add the following variables:
REACT_APP_SPOTIFY_CLIENT_ID=''
REACT_APP_SPOTIFY_REDIRECT_URI=''
# Start the dev server
npm run start
# Build the project
npm run build
# Eslint
npm run lint
# Prettier
npm run format