load trending images from tmdb at startup

- need TMDB_API_KEY as environment variable
- mount /cache for data persistence

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2025-11-17 23:21:01 +01:00
parent 4587901672
commit 4ce471599b
17 changed files with 305 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
enum PosterOrientation {
horizontal,
vertical,
}
enum PosterFormat {
png,
jpeg,
bmp,
}
enum PosterOutput {
image,
lvgl,
lvglBinary,
}