Bun WebServer to simplify Spotify API integration in other apps
414
![]()
Bunify is a Bun WebServer to simplify Spotify API integration in other apps, simply enter your Spotify app credentials and access simple feature to integrate in other apps.
services:
bunify:
image: simonlclrs/bunify:latest
container_name: bunify
restart: always
environment:
CLIENT_ID: ""
CLIENT_SECRET: ""
REDIRECT_URI: "https://YOUR_ACCESS_PATH/callback"
ports:
- "8888:8888"
docker run \
-p 8888:8888 \
-e CLIENT_ID="" \
-e CLIENT_SECRET="" \
-e REDIRECT_URI="https://YOUR_ACCESS_PATH/callback" \
--name bunify -d \
simonlclrs/bunify:latest
For both of these methods, make sure to use the right callback URL as defined in your spotify app, with the /callback in the end and the right port.
If you edit the external access port of the container, make sure to include it in the callback URL also.
To reset the database in case of problem or if you want to change account (edit the name of the container if necessary) :
docker exec -it bunify bun reset
Feel free to visit the GitLab repository to report any problem or request a feature for this project, and read the README for the different requests available : https://gitlab.com/simonlclrs/Bunify
Content type
Image
Digest
sha256:4f445a8ec…
Size
40.3 MB
Last updated
20 days ago
docker pull simonlclrs/bunify