Simple application that checks for song duplicates in a Spotify playlist.
Made using electron-vite with React for the front-end. With axios for the HTTP requests.
Run npm install
or yarn
to install all the required dependencies.
- On your browser, go to https://developer.spotify.com/dashboard (login at https://accounts.spotify.com/login if not logged in).
- Click on 'Create App'.
- Give your App a name, description and most importantly a redirect uri of
http://localhost:5173/callback
and agree with Spotify's terms and conditions. - After creating the App, click on 'Settings'.
- Copy the Client ID.
- Back on the application folder, on
VITE_CLIENT_ID
, paste the copied client id after the=
. Make sure the client id is correct. - On
VITE_REDIRECT_URI
, paste the redirect uri you added on the App you created on Spotify's developer dashboard. Make sure the redirect uri is correct. - Run the application with
npm run dev
oryarn dev
.