15 lines
332 B
Python
15 lines
332 B
Python
# config.py
|
|
try:
|
|
from config_local import *
|
|
except ImportError:
|
|
print("⚠️ Du måste skapa en config_local.py med dina API-nycklar.")
|
|
|
|
ROOT_FOLDER_PATH = "/data/media/music2"
|
|
QUALITY_PROFILE_ID = 1
|
|
|
|
MIN_PLAYS = 10
|
|
RECENT_MONTHS = 3
|
|
MAX_SIMILAR_PER_ART = 20
|
|
SIMILAR_MATCH_MIN = 0.5
|
|
CACHE_TTL_HOURS = 24
|
|
DEBUG_PRINT = True
|