1st Official Post
  • your_spotify is a web app that shows you statistics about your Spotify usage.

    You can find out more in the video.

    The installation takes place in 3 steps:

    • Database
    • Server
    • Web Client

    External Content youtu.be
    Content embedded from external sources will not be displayed without your consent.
    Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.

    Bash
    docker run -d --name mongo \
    -v /volume1/docker/your_spotify_db:/data/db \
    --restart always \
    mongo:4.4.13

    With Synology you should be careful to use a 4.4.x version of the Mongo DB because 5.x is not compatible with the CPU of the device (maybe with newer devices this isn't the case anymore).

    Bash
    docker run -d --name=your_spotify_server \
    --link mongo \
    -p 33424:8080 \
    -e API_ENDPOINT= https://dyndnsserverdomain/api  \
    -e CLIENT_ENDPOINT= https://dyndnsserverdomain  \
    -e SPOTIFY_PUBLIC=eurepublicid \
    -e SPOTIFY_SECRET=eurepublicidsecret \
    -e CORS=all \
    --restart always \
    yooooomi/your_spotify_server

    ou must fill in the API and CLIENT endpoint according to your settings.

    In the same way, you must take your Spotify PUBLIC and SECRET data from your developer account. Links to this are a little further down.

    When filling in the data in the configuration on the Spotify page, it is important to fill in the correct redirect URI.

    Code
     https://dyndnsserverdomain/api/oauth/spotify/callback 
    Bash
    docker run -d --name=your_spotify_client \
    -p 17812:3000 \
    -e API_ENDPOINT= https://dyndnsserverdomain/api  \
    yooooomi/your_spotify_client

    Please make sure to fill in your API endpoint correctly here too.

    SWAG example conf file for your_spotify.


    Used Links

    TZ - Timezone

    Random Number (for a port number by random generator)

    your_spotify @GitHub

    Spotify Developer Dashboard (an application must be created here to get an API key)

    Spotify Account Privacy (to request the past history)

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!