- Updated all module names from SystemStatsDaemon to Systant - Renamed application config from :system_stats_daemon to :systant - Updated service files and documentation - Release binary now at _build/prod/rel/systant/bin/systant 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
351 B
Elixir
15 lines
351 B
Elixir
import Config
|
|
|
|
config :systant, Systant.MqttClient,
|
|
host: "mqtt.home",
|
|
port: 1883,
|
|
client_id: "systant",
|
|
username: "mqtt",
|
|
password: "pleasework",
|
|
stats_topic: "system/stats",
|
|
command_topic: "system/commands",
|
|
publish_interval: 30_000
|
|
|
|
config :logger, :console,
|
|
format: "$time $metadata[$level] $message\n",
|
|
metadata: [:request_id] |