A Spotify clone built by Java Open Source Group
Find a task you want to work on from the project board
First off, thank you for wanting to contribute! 👍
-
Fork this repo
-
Make your changes on a branch, for example
feature/<my-cool-feature>
-
Raise a pull request!
- Follow this guide if the above does not make sense!
For this to work, you need to have a Spotify Application registered.
- Go here and register an application
- This will allow you to get a
client id
andsecret id,
which you need to authenticate to Spotify. - Replace your
client id
andsecret id
in theapplication.properties
file. - Make sure you add this URL
http://localhost:8080/api/spotify-auth
in the Spotify Dashboard, otherwise it will not work!
- Make sure your
client id
andsecret id
are in application.properties. - Run
SpotifyCloneApplication.java
cd frontend
npm i && npm start
(given you'venpm
installed)