/// Zentrale App-Konfiguration – alle URLs, Keys, Feature-Toggles class AppConfig { // Server-Adressen static const navidromeUrl = 'https://musik.baka-net.de'; static const cloudUrl = 'https://cloud.baka-net.de'; static const logUrl = 'https://baka-net.de'; static const authUrl = 'https://baka-net.de/auth'; // API-Key (MUSS via --dart-define MELO_API_KEY=xxx beim Build gesetzt werden) static const ytProxyApiKey = String.fromEnvironment('MELO_API_KEY'); // Feature-Toggles static bool sendeDiagnosedaten = true; }