fix
Build and Deploy / build (push) Successful in 22s
Build and Deploy / deploy (push) Successful in 35s

This commit is contained in:
2026-05-26 21:12:02 +02:00
parent 7887892737
commit 76050eeda9
+2 -2
View File
@@ -74,7 +74,7 @@ def _env_bool(name: str, default: bool) -> bool:
def main() -> int:
suwayomi_path = _env_str("SUWAYOMI_PATH", r"M:\config\downloads\mangas")
suwayomi_path = _env_str("SUWAYOMI_PATH", r"M/mnt/suwayomi")
kavita_path = _env_str("KAVITA_PATH", "/mnt/kavita")
kavita_url = _env_str("KAVITA_URL", "http://kavita:5000")
kavita_api_key = _env_str("KAVITA_API_KEY", "")
@@ -82,7 +82,7 @@ def main() -> int:
settle_seconds = _env_int("SETTLE_SECONDS", 600)
request_timeout = _env_int("REQUEST_TIMEOUT", 30)
delete_source = _env_bool("DELETE_SOURCE", True)
match_path = _env_str("MATCH_PATH", "matches.json")
match_path = _env_str("MATCH_PATH", "/config/matches.json")
web_host = _env_str("WEB_HOST", "0.0.0.0") or "0.0.0.0"
web_port = _env_int("WEB_PORT", 8080)