First Commit

This commit is contained in:
2026-02-17 09:35:36 +07:00
parent f752e30ab9
commit fd1904c0e1
12 changed files with 974 additions and 1 deletions

24
USAGE.md Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
# Example usage script for Frigate MQTT Counter Service
echo "Example usage of Frigate MQTT Counter Service"
echo ""
echo "To run with custom MQTT settings:"
echo "FRIGATE_MQTT_HOST=192.168.1.100"
echo "FRIGATE_MQTT_PORT=1883"
echo "REPORT_MQTT_HOST=192.168.1.101"
echo "REPORT_MQTT_PORT=1883"
echo "TOPIC=frigate/events"
echo "SITE_NAME=warehouse-1"
echo "python frigate_counter.py"
echo ""
echo "To run with default settings:"
echo "python frigate_counter.py"
echo ""
echo "To test the installation:"
echo "./install.sh"
echo "python test_frigate_counter.py"