cd75bbf5a0
- Go + SQLite + HTMX web GUI for managing Reolink camera automations - Frigate MQTT subscriber for motion, event, review, and object topics - Automation engine with time-window filtering and auto-revert timers - Reolink HTTP API client: floodlight, siren, PTZ, IR mode, OSD timestamp - Camera discovery via Frigate REST API with RTSP credential parsing - Multi-stage Docker build with docker-compose for Frigate network integration
26 lines
675 B
Bash
26 lines
675 B
Bash
# Copy this to .env and fill in your values
|
|
|
|
# Web GUI port (host-side)
|
|
HTTP_PORT=8080
|
|
|
|
# MQTT broker — point at your Frigate/Mosquitto instance
|
|
MQTT_HOST=192.168.1.10
|
|
MQTT_PORT=1883
|
|
MQTT_USERNAME=
|
|
MQTT_PASSWORD=
|
|
MQTT_USE_TLS=false
|
|
MQTT_CLIENT_ID=reolink-controller
|
|
|
|
# Frigate MQTT topic prefix (default: frigate)
|
|
FRIGATE_TOPIC_PREFIX=frigate
|
|
|
|
# Frigate REST API URL — used for the "Import from Frigate" camera discovery feature
|
|
# Set to the base URL of your Frigate instance (no trailing slash)
|
|
FRIGATE_API_URL=http://frigate:5000
|
|
|
|
# Docker network that Frigate is attached to
|
|
FRIGATE_NETWORK=frigate_default
|
|
|
|
# Log verbosity: debug | info | warn | error
|
|
LOG_LEVEL=info
|