Skip to content

Commit acd7d30

Browse files
feat: update README with new logo and enhance config defaults; add docker-compose setup
1 parent 1e7df32 commit acd7d30

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# MediaFlowrr
21

3-
![MediaFlowrr Logo](https://github.com/giuseppe99barchetta/MediaFlowrr/blob/main/unraid/logo.png)
2+
# MediaFlowrr
43

4+
<p align="center">
5+
<img width="250" height="210" src="https://i.ibb.co/BHF3RGNr/Chat-GPT-Image-22-lug-2025-15-05-35-no-bg-1.png">
6+
</p>
57
This project aim to automatically organizes downloaded files from a source folder (for example JDownloader download folder), renaming them and moving them into appropriate folders based on movie/TV show information retrieved from the TMDB API. It’s designed (but not mandatory) to integrate with media server software like Jellyfin or Plex.
68

79
## Prerequisites

config/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
class Config:
77
"""Configuration class for application settings."""
88

9-
SOURCE_FOLDER = os.environ.get("SOURCE_FOLDER")
10-
LIBRARY_FOLDER = os.environ.get("LIBRARY_FOLDER")
9+
SOURCE_FOLDER = os.environ.get("SOURCE_FOLDER", "/media/source")
10+
LIBRARY_FOLDER = os.environ.get("LIBRARY_FOLDER", "/media/library")
1111
TMDB_API_KEY = os.environ.get("TMDB_API_KEY")
1212
MOVIE_FOLDER = os.environ.get("MOVIE_FOLDER")
1313
TV_FOLDER = os.environ.get("TV_FOLDER")

docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: "3.8"
2+
services:
3+
mediaflowrr:
4+
image: ghcr.io/giuseppe99barchetta/mediaflowrr:latest
5+
volumes:
6+
- /path/to/local/downloads:/media/source
7+
- /path/to/local/library:/media/library
8+
env_file:
9+
- .env

0 commit comments

Comments
 (0)