all repos

moviefeed @ main

rss feed server for tracking new tv show episodes
1875224 — Oleksandr Smirnov Sun, 18 Jan 2026 2026-01-18 14:21:00 +0200
add some layer of auth
2bda86d — Oleksandr Smirnov Tue, 13 Jan 2026 2026-01-13 20:13:44 +0200
add some logging
7eea7ff — Oleksandr Smirnov Tue, 13 Jan 2026 2026-01-13 20:13:44 +0200
improve the api "client", dont make unnecessary requests

Clone urls

https://git.olexsmir.xyz/moviefeed
git@git.olexsmir.xyz:moviefeed

Mirror status

Last updated 24 minutes ago from: https://github.com/olexsmir/moviefeed

moviefeed

RSS feed generator for tracking recent TV show episodes from TMDB. Fetches the latest episodes from your followed shows and serves them as an RSS feed.

Quick Start

# Build
go build -o moviefeed .

# Create config
cp config.example.yaml config.yaml
# Edit config.yaml with your TMDB API key and show IDs

# Run
./moviefeed -config config.yaml

Server starts on port 8000 (configurable). Access the RSS feed at http://localhost:8000/, or http://localhost:8000/?access_key=mySecretKey

Configuration

Create config.yaml (or config.json):

api_key: "your_tmdb_api_key"  # required: get from themoviedb.org/settings/api
access_key: "sercret-key" # adds a layer of "auth", only users that know the key can access the api
port: "8000"  # optional: defaults to "8000"
shows:  # required
  - "tt22202452"  # IMDB ID (Pluribus)
  - "1396"       # TMDB ID (Breaking Bad)

How It Works