Add YouTube display feature with channel stats and logo. Move sensitive credentials to secrets file.

This commit is contained in:
ChuckBuilds
2025-04-21 21:51:11 -05:00
parent cc439dd709
commit 727141198e
3 changed files with 125 additions and 1 deletions

View File

@@ -38,7 +38,8 @@
"nba_live": 30,
"nba_recent": 20,
"nba_upcoming": 20,
"calendar": 30
"calendar": 30,
"youtube": 20
}
},
"clock": {
@@ -109,5 +110,9 @@
"nba_upcoming": true
},
"live_game_duration": 30
},
"youtube": {
"enabled": true,
"update_interval": 3600
}
}

View File

@@ -1,5 +1,9 @@
{
"weather": {
"api_key": "YOUR_OPENWEATHERMAP_API_KEY"
},
"youtube": {
"api_key": "YOUR_YOUTUBE_API_KEY",
"channel_id": "YOUR_YOUTUBE_CHANNEL_ID"
}
}