A React/Next app for playing Spotify music quiz. Great for use with friends on a party.
Warning: Unfortunately, Spotify does not allow the creation of Spotify games via their Developer policy. Thus, we cannot provide public access to the music-quiz instance running on quiz.josholaus.com (you will receive an error on login)
If you want to use this app anyway (thank you!) you can register your own Spotify application use the provided Docker image to host music-quiz yourself.
https://<your host>/api/callback
as a redirect URIWe offer a pre-built Docker image through GitHub's package registry.
Docker Command
docker pull ghcr.io/josholaus/music-quiz/quiz:latest
docker run -d -p 3000:3000 josholaus/music-quiz/quiz:latest
docker-compose
version: '2'
services:
musicquiz:
container_name: musicquiz
image: ghcr.io/josholaus/music-quiz/quiz:latest
ports:
- '3000'
environment:
CLIENT_ID: <your client ID>
CLIENT_SECRET: <your client secret>
REDIRECT_URI: https://<your host>/api/callback
restart: always
... and give it a docker-compose up -d
This project is licensed under the GNU General Public License v3.0.