mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-17 23:53:58 +02:00
135 lines
4.9 KiB
Markdown
135 lines
4.9 KiB
Markdown
<br />
|
|
<div align="center">
|
|
<a href="https://maxdorninger.github.io/MediaManager">
|
|
<img src="https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/Writerside/images/logo.svg" alt="Logo" width="260" height="260">
|
|
</a>
|
|
|
|
<h3 align="center">MediaManager</h3>
|
|
|
|
<p align="center">
|
|
Modern management system for your media library
|
|
<br />
|
|
<a href="https://maxdorninger.github.io/MediaManager/introduction.html"><strong>Explore the docs »</strong></a>
|
|
<br />
|
|
<a href="https://maxdorninger.github.io/MediaManager/issues/new?labels=bug&template=bug-report---.md">Report Bug</a>
|
|
·
|
|
<a href="https://maxdorninger.github.io/MediaManager/issues/new?labels=enhancement&template=feature-request---.md">Request Feature</a>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
MediaManager is modern software to manage your TV and movie library. It is designed to be a replacement for Sonarr,
|
|
Radarr, Overseer, and Jellyseer.
|
|
It supports TVDB and TMDB for metadata, supports OIDC and OAuth 2.0 for authentication and supports Prowlarr and
|
|
Jackett.
|
|
MediaManager is built first and foremost for deployment with Docker, making it easy to set up.
|
|
|
|
It also provides an API to interact with the software programmatically, allowing for automation and integration with
|
|
other services.
|
|
|
|
<a href="https://buymeacoffee.com/maxdorninger" target="_blank">
|
|
<img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" >
|
|
</a>
|
|
|
|
|
|
## Quick Start
|
|
|
|
```
|
|
wget -O docker-compose.yaml https://raw.githubusercontent.com/maxdorninger/MediaManager/refs/heads/master/docker-compose.yaml
|
|
# Edit docker-compose.yaml to set the environment variables!
|
|
docker compose up -d
|
|
```
|
|
|
|
### [View the docs for installation instructions and more](https://maxdorninger.github.io/MediaManager/configuration-overview.html#configuration-overview)
|
|
|
|
## Check out the awesome sponsors of MediaManager ❤️
|
|
<a href="https://fosstodon.org/@aljazmerzen"><img src="https://github.com/aljazerzen.png" width="80px" alt="Aljaž Mur Eržen" /></a>
|
|
<a href="https://github.com/ldrrp"><img src="https://github.com/ldrrp.png" width="80px" alt="Luis Rodriguez" /></a>
|
|
|
|
|
|
<!-- ROADMAP -->
|
|
## Roadmap
|
|
|
|
- [x] support for more torrent indexers
|
|
- [x] fully automatic downloads
|
|
- [x] add tests
|
|
- [x] add more logs/errors
|
|
- [x] make API return proper error codes
|
|
- [x] optimize images for web in the backend
|
|
- [x] responsive ui
|
|
- [x] automatically update metadata of shows
|
|
- [x] automatically download new seasons/episodes of shows
|
|
- [x] add fallback to just copy files if hardlinks don't work
|
|
- [x] add check at startup if hardlinks work
|
|
- [x] create separate metadata relay service, so that api keys for TMDB and TVDB are not strictly needed
|
|
- [x] support for movies
|
|
- [x] expand README with more information and a quickstart guide
|
|
- [x] improve reliability of scheduled tasks
|
|
- [x] add notification system
|
|
- [x] add sequence diagrams to the documentation
|
|
- [ ] provide example configuration files
|
|
- [ ] make media sorting algorithm configurable
|
|
- [ ] add usenet support
|
|
- [ ] add in-depth documentation on the architecture of the codebase
|
|
- [ ] make indexer module multithreaded
|
|
- [ ] add support for deluge and transmission
|
|
- [ ] add delete button for movies/TV shows
|
|
- [ ] rework prowlarr module (select which indexers to use, etc.)
|
|
- [ ] _maybe_ rework the logo
|
|
- [ ] _maybe_ add support for configuration via toml/yaml config file
|
|
|
|
See the [open issues](hhttps://maxdorninger.github.io/MediaManager/issues) for a full list of proposed features (and known issues).
|
|
|
|
## Screenshots
|
|
|
|

|
|

|
|

|
|

|
|

|
|
|
|
|
|
## Developer Quick Start
|
|
|
|
```bash
|
|
pip install uv
|
|
uv venv
|
|
# Activate the virtual environment
|
|
uv pip install -e .
|
|
```
|
|
```bash
|
|
docker compose up db -d
|
|
```
|
|
|
|
```bash
|
|
uv run alembic upgrade head
|
|
```
|
|
|
|
### Get the frontend up and running
|
|
|
|
```bash
|
|
cd /web && npm install
|
|
```
|
|
|
|
### Now start the backend and frontend
|
|
```bash
|
|
fastapi dev /media_manager/main.py --reload --host
|
|
```
|
|
|
|
```bash
|
|
cd /web && npm run dev
|
|
```
|
|
|
|
|
|
<!-- LICENSE -->
|
|
## License
|
|
|
|
Distributed under the AGPL 3.0. See `LICENSE.txt` for more information.
|
|
|
|
|
|
<!-- ACKNOWLEDGMENTS -->
|
|
## Acknowledgments
|
|
|
|
* [Thanks to Pawel Czerwinski for the image on the login screen](https://unsplash.com/@pawel_czerwinski)
|
|
|