Skip to content

zawislakm/RatPartyMixTracker

Repository files navigation

Playlist tracking app

An application monitors real-time updates to Spotify playlists, delivering notifications about changes and select daily song for Twitter followers.

Technology

The app regularly checks for updates on the playlist and selects a daily song to share with Twitter followers. API provides information about daily song to DiscordBot and allows to set a daily songs for future days. The application is deployed on an Oracle Cloud virtual machine, utilizing a PostgreSQL database. It is containerized with Docker and deployed seamlessly through GitHub Actions.

erDiagram
    ARTISTS {
        int  artist_id PK
        varchar spotify_id
        varchar artist_name
    }

    SONGS {
        int  song_id PK
        varchar spotify_id
        varchar song_name
        varchar added_by
        datetime added_at  
    }

    SONGS_BY_ARTISTS {
        int artist_id FK
        int song_id FK
    }

    DAILY_SONG {
        int  song_id FK
        date song_date
    }

ARTISTS ||--o{ SONGS_BY_ARTISTS : "artist_id"
SONGS ||--o{ SONGS_BY_ARTISTS : "song_id"
SONGS ||--o{ DAILY_SONG : "song_id"


Loading

RatPartMix links

  1. RatPartMix - Spotify
  2. RatPartyMix - Twitter
  3. RatPartMix - DiscordBot

About

Twitter bot tracking RatPartyMix playlist

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published