-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
34 lines (34 loc) · 930 Bytes
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"CoversContext": "Data Source=covers.db"
},
"MusicDirectory": "C:\\Users\\ise\\coverMusic",
"CoverDownloader": {
// AAD = Album Art Downloader (https://sourceforge.net/projects/album-art/)
// SACAD = Smart Automatic Cover Art Downloader (https://github.com/desbma/sacad)
// Spotify = Use Spotify to search for album covers, works only if you have setup the Spotify usage correctly
"Type": "AAD",
"Executable": "",
"CheckRegularForMissingCovers": "false"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:5000"
}
}
},
"Spotify": {
"ClientID": "",
"ClientSecret": "",
"CallbackUri": "http://localhost:5000/Spotify/Callback"
}
}