Compare commits

..

3 Commits

Author SHA1 Message Date
1101c600ab feat(config)!: Changed default config location
All checks were successful
Build and deploy / build (push) Successful in 10m29s
Build and deploy / Deploy container (push) Has been skipped
2025-10-19 05:31:37 +02:00
efa1f9aeee feat(config)!: Remove device manager lua code
With the recent changes the device manager no longer needs to be
available in lua.
2025-10-19 05:29:41 +02:00
954b220c48 feat(config)!: Config now returns the mqtt config instead of the client
Instead the client is now created on the rust side based on the config.
Devices that require the mqtt client will now instead need to be
constructor using a function. This function receives the mqtt client.
2025-10-19 05:04:47 +02:00

View File

@@ -733,7 +733,6 @@ local function create_devs(mqtt_client)
return devs
end
--- @type MqttConfig
local mqtt_config = {
host = ((host == "zeus" or host == "hephaestus") and "olympus.lan.huizinga.dev") or "mosquitto",
port = 8883,