Performance Improvements

This commit is contained in:
2026-06-16 11:37:47 +02:00
parent b6d7f2d0af
commit a59cff3951
5 changed files with 102 additions and 32 deletions
+1 -2
View File
@@ -44,7 +44,6 @@ from __future__ import annotations
import os
import sys
from pathlib import Path
try:
from dotenv import load_dotenv
load_dotenv()
@@ -107,7 +106,7 @@ def main() -> int:
web_host = _env_str("WEB_HOST", "0.0.0.0") or "0.0.0.0"
web_port = _env_int("WEB_PORT", 8080)
updater_enabled = _env_bool("UPDATER_ENABLED", True)
updater_schedule = _env_str("UPDATER_SCHEDULE", "0 19 * * 1,4")
updater_schedule = _env_str("UPDATER_SCHEDULE", "0 10 * * 1,4")
updater_log = _env_str("UPDATER_LOG", "/config/volume_updater.log")
cover_cache_path = _env_str("COVER_CACHE_PATH", "") or None
perf_path = _env_str("PERF_PATH", "/config/perf_stats.json") or None