Initial commit: Filebot Media Browser

Vue 3 + FastAPI Webapp zur Anzeige von Filebot/n8n-Medienmetadaten aus PostgreSQL.
Enthält Frontend, API, Nginx-Config, SQL-Migrationen und Docker-Compose-Setup.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Housemann
2026-07-11 05:38:37 +02:00
co-authored by Claude Sonnet 4.6
commit 3f253ffe81
45 changed files with 4791 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
-- Gesehen-Status für Filebot Media Browser
-- Tabelle: n8n.movie_files in Datenbank n8n_filebot (anpassen falls nötig)
ALTER TABLE n8n.movie_files
ADD COLUMN IF NOT EXISTS seen_at TIMESTAMPTZ NULL;
COMMENT ON COLUMN n8n.movie_files.seen_at IS
'NULL = noch nicht gesehen; gesetzt = Zeitpunkt der Ansicht in der Web-UI';
CREATE INDEX IF NOT EXISTS idx_movie_files_seen_at
ON n8n.movie_files (seen_at);
CREATE INDEX IF NOT EXISTS idx_movie_files_unseen
ON n8n.movie_files (created_at DESC)
WHERE seen_at IS NULL;
+6
View File
@@ -0,0 +1,6 @@
-- Optional: falls cover_url noch nicht existiert
ALTER TABLE n8n.movie_files
ADD COLUMN IF NOT EXISTS cover_url TEXT NULL;
COMMENT ON COLUMN n8n.movie_files.cover_url IS
'Poster/Cover-URL (z.B. TVMaze medium_portrait)';
+6
View File
@@ -0,0 +1,6 @@
-- Optional: falls object_type noch nicht existiert
ALTER TABLE n8n.movie_files
ADD COLUMN IF NOT EXISTS object_type TEXT NULL;
COMMENT ON COLUMN n8n.movie_files.object_type IS
'movie oder episode (Filebot/n8n)';