Connection Succesful, working on filtering

This commit is contained in:
2025-08-14 14:56:56 -05:00
commit 72a2819aea
11 changed files with 403 additions and 0 deletions

24
config.json.example Normal file
View File

@@ -0,0 +1,24 @@
{
"pihole": {
"host": "192.168.1.100",
"password": "YOUR_PIHOLE_PASSWORD"
},
"homeAssistant": {
"host": "192.168.1.200:8123",
"apiToken": "YOUR_HOME_ASSISTANT_API_TOKEN",
"automation": "automation.trigger_pihole_notification"
},
"filter": {
"strings": [
"example.com",
"test.net",
"linuxfoundation.org"
]
},
"pollingIntervalSeconds": 10,
"pointsThreshold": 2,
"pointExpirationSeconds": 300,
"notifications": {
"discordWebhookUrl": "YOUR_DISCORD_WEBHOOK_URL"
}
}