Initial commit

This commit is contained in:
scoped
2026-05-15 02:41:52 +00:00
commit e2de5f705a
73 changed files with 9965 additions and 0 deletions

19
dist/sortarr/config/app.toml vendored Normal file
View File

@@ -0,0 +1,19 @@
# Host-editable Sortarr configuration. Values here override backend/default-config/app.toml.
# Environment variables in .env override common runtime values such as dry-run and intervals.
[app]
dry_run = true
scan_interval_seconds = 20
settle_seconds = 90
log_level = "INFO"
library_scan_max_files = 20000
library_scan_timeout_seconds = 8
[theme]
default = "slate"
allow_custom_css = true
custom_css_path = "/config/custom-theme.css"
[metadata]
tmdb_enabled = true
tmdb_language = "en-US"

6
dist/sortarr/config/custom-theme.css vendored Normal file
View File

@@ -0,0 +1,6 @@
/* Optional host-editable theme overrides. Loaded by the dashboard when enabled. */
:root {
/* --bg: #0f1115; */
/* --accent: #5cc8ff; */
}