Update appsettings file and make SquidWTF default service

This commit is contained in:
bransoned
2026-01-10 21:03:07 -05:00
parent d8d046f6ef
commit 81979713ef

View File

@@ -1,21 +1,23 @@
{ {
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Subsonic": { "Subsonic": {
"Url": "http://localhost:4533", "Url": "https://navidrome.local.bransonb.com",
"ExplicitFilter": "All", "MusicService": "SquidWTF"
"DownloadMode": "Track"
}, },
"Library": { "Library": {
"DownloadPath": "./downloads" "DownloadPath": "./downloads"
}, },
"Qobuz": {
"UserAuthToken": "your-qobuz-token",
"UserId": "your-qobuz-user-id",
"Quality": "FLAC"
},
"Deezer": { "Deezer": {
"Arl": "", "Arl": "your-deezer-arl-token",
"ArlFallback": "" "ArlFallback": "",
"Quality": "FLAC"
},
"SquidWTF": {
"Quality": "FLAC"
} }
}
}