discoverylidarr/config.py

19 lines
509 B
Python
Raw Permalink Normal View History

2025-06-23 09:23:58 +00:00
# config.py
try:
from config_local import *
except ImportError:
print("⚠️ Du måste skapa en config_local.py med dina API-nycklar.")
2025-06-23 10:31:25 +02:00
2025-06-23 12:27:49 +00:00
ROOT_FOLDER_PATH = "/data/media/music2"
2025-06-23 13:22:12 +00:00
QUALITY_PROFILE_ID = 4 #check what yours is! otherwise 1 is probably "Any"
2025-06-23 10:31:25 +02:00
2025-06-23 12:34:20 +00:00
MIN_PLAYS = 10
2025-06-23 10:31:25 +02:00
RECENT_MONTHS = 3
MAX_SIMILAR_PER_ART = 20
SIMILAR_MATCH_MIN = 0.5
CACHE_TTL_HOURS = 24
2025-06-23 12:27:49 +00:00
DEBUG_PRINT = True
2025-06-23 13:22:12 +00:00
MONITORED = True
MONITOR_NEW_ITEMS = "all" # alternativt "none", "future", "missing", etc.
SEARCH_FOR_MISSING_ALBUMS = True