updated config
This commit is contained in:
parent
0df1e9339c
commit
6163759d50
1 changed files with 15 additions and 8 deletions
|
|
@ -1,23 +1,30 @@
|
||||||
{
|
{
|
||||||
"spotify": {
|
"spotify": {
|
||||||
"client_id": "YOUR CLIENT ID",
|
"client_id": "YOUR_SPOTIFY_CLIENT_ID",
|
||||||
"client_secret": "YOUR CLIENT SECRET"
|
"client_secret": "YOUR_SPOTIFY_CLIENT_SECRET"
|
||||||
},
|
},
|
||||||
"plex": {
|
"plex": {
|
||||||
"base_url": "http://192.168.86.36:32400",
|
"base_url": "http://YOUR_PLEX_IP_ADDRESS:32400",
|
||||||
"token": "YOUR PLEX TOKEN"
|
"token": "YOUR_PLEX_TOKEN"
|
||||||
},
|
},
|
||||||
"soulseek": {
|
"soulseek": {
|
||||||
"slskd_url": "http://localhost:5030",
|
"slskd_url": "http://localhost:5030",
|
||||||
"api_key": "YOUR SLSKD API KEY",
|
"api_key": "YOUR_SLSKD_API_KEY",
|
||||||
"download_path": "./downloads",
|
"download_path": "/path/to/your/slskd/downloads",
|
||||||
"transfer_path": "./Transfer"
|
"transfer_path": "/path/to/your/music/library"
|
||||||
},
|
},
|
||||||
"logging": {
|
"logging": {
|
||||||
"path": "logs/app.log",
|
"path": "logs/app.log",
|
||||||
"level": "DEBUG"
|
"level": "INFO"
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"audio_quality": "flac"
|
"audio_quality": "flac"
|
||||||
|
},
|
||||||
|
"database": {
|
||||||
|
"path": "database/music_library.db",
|
||||||
|
"batch_size": 50,
|
||||||
|
"auto_refresh": true,
|
||||||
|
"refresh_interval_hours": 24,
|
||||||
|
"max_workers": 5
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue