Hangman game for music lovers, using the Spotify & Apple Music APIs.
- Clone the repo, then run
yarn install
. - Run
cp .env .env.local
in the project root directory. - Log in to Spotify Developers Dashboard with your Spotify account.
- Click on the Create New Client ID button.
- Fill The following details:
- App or Hardware Name: Album Hangman Dev
- App or Hardware Description: Hangman game for music lovers
- What are you building?: Website
- In the next dialog - "Are you developing a commercial integration?" - Press No.
- Tick all the checkboxes in the final dialog, and press Submit.
- Press Edit Settings and add
http://localhost:3000/game/
to the Redirect URIs section and press Save. - Copy the Client ID and paste it to
.env.local
file, to theREACT_APP_SPOTIFY_ID
variable, and ChangeREACT_APP_GAME_REDIRECT_URL
tohttp://localhost:3000/game/
. - Run
yarn start
to start the dev server.
The project was bootstrapped with Create React App.