mirror of
https://github.com/ChuckBuilds/LEDMatrix.git
synced 2026-04-10 21:03:01 +00:00
The secrets template used "weather" as the key, but the weather plugin's ID is "ledmatrix-weather". Since ConfigManager deep-merges secrets into the main config by key, secrets under "weather" never reached the plugin config at config["ledmatrix-weather"], making the API key invisible to the plugin. Co-authored-by: 5ymb01 <5ymb01@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
496 B
JSON
17 lines
496 B
JSON
{
|
|
"ledmatrix-weather": {
|
|
"api_key": "YOUR_OPENWEATHERMAP_API_KEY"
|
|
},
|
|
"youtube": {
|
|
"api_key": "YOUR_YOUTUBE_API_KEY",
|
|
"channel_id": "YOUR_YOUTUBE_CHANNEL_ID"
|
|
},
|
|
"music": {
|
|
"SPOTIFY_CLIENT_ID": "YOUR_SPOTIFY_CLIENT_ID_HERE",
|
|
"SPOTIFY_CLIENT_SECRET": "YOUR_SPOTIFY_CLIENT_SECRET_HERE",
|
|
"SPOTIFY_REDIRECT_URI": "http://127.0.0.1:8888/callback"
|
|
},
|
|
"github": {
|
|
"api_token": "YOUR_GITHUB_PERSONAL_ACCESS_TOKEN"
|
|
}
|
|
} |