git ignore secrets

set up git ignore secrets to not leak API keys
This commit is contained in:
Chuck
2025-04-07 19:16:31 -05:00
parent eebfb0b80d
commit 23771f5a96
4 changed files with 49 additions and 6 deletions

View File

@@ -17,7 +17,6 @@
"update_interval": 1
},
"weather": {
"api_key": "YOUR_OPENWEATHERMAP_API_KEY",
"update_interval": 300,
"units": "imperial",
"display_format": "{temp}°F\n{condition}"

View File

@@ -0,0 +1,5 @@
{
"weather": {
"api_key": "YOUR_OPENWEATHERMAP_API_KEY"
}
}