gitextract_jvbd20pz/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── on-branch-create.yml │ ├── on-branch-delete.yml │ ├── on-commit.yml │ └── version.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION ├── compose/ │ └── docker-compose.yml ├── jokes.txt ├── main.py ├── modules/ │ ├── __init__.py │ ├── border_replacerr.py │ ├── health_checkarr.py │ ├── jduparr.py │ ├── labelarr.py │ ├── nohl.py │ ├── poster_cleanarr.py │ ├── poster_renamerr.py │ ├── renameinatorr.py │ ├── sync_gdrive.py │ ├── unmatched_assets.py │ └── upgradinatorr.py ├── requirements.txt ├── start.sh ├── util/ │ ├── __init__.py │ ├── arrpy.py │ ├── assets.py │ ├── config.py │ ├── constants.py │ ├── construct.py │ ├── extract.py │ ├── index.py │ ├── logger.py │ ├── match.py │ ├── normalization.py │ ├── notification.py │ ├── notification_formatting.py │ ├── scanner.py │ ├── scheduler.py │ ├── template/ │ │ └── config_template.json │ ├── utility.py │ └── version.py └── web/ ├── server.py ├── static/ │ ├── css/ │ │ ├── base.css │ │ ├── common.css │ │ ├── index.css │ │ ├── instances.css │ │ ├── layout.css │ │ ├── logs.css │ │ ├── modals.css │ │ ├── navigation.css │ │ ├── notifications.css │ │ ├── poster_search.css │ │ ├── schedule.css │ │ └── settings.css │ └── js/ │ ├── common.js │ ├── help_content.js │ ├── helper.js │ ├── index.js │ ├── instances.js │ ├── logs.js │ ├── main.js │ ├── navigation.js │ ├── notifications.js │ ├── payload.js │ ├── poster_search.js │ ├── schedule.js │ ├── settings/ │ │ ├── constants.js │ │ ├── modal_helpers.js │ │ ├── modals.js │ │ ├── modules/ │ │ │ ├── border_replacerr.js │ │ │ ├── health_checkarr.js │ │ │ ├── jduparr.js │ │ │ ├── labelarr.js │ │ │ ├── main.js │ │ │ ├── nohl.js │ │ │ ├── poster_cleanarr.js │ │ │ ├── poster_renamerr.js │ │ │ ├── renameinatorr.js │ │ │ ├── sync_gdrive.js │ │ │ ├── unmatched_assets.js │ │ │ └── upgradinatorr.js │ │ ├── presets.js │ │ └── settings_helpers.js │ └── settings.js └── templates/ ├── index.html └── pages/ ├── instances.html ├── logs.html ├── notifications.html ├── poster_search.html ├── schedule.html └── settings.html