From dbf9e90164210eea4faab081e0970d9c43802277 Mon Sep 17 00:00:00 2001 From: jtricerolph Date: Tue, 28 Jul 2026 22:25:20 +0000 Subject: [PATCH] Move plant to Hotel category instead of Operations Co-Authored-By: Claude Sonnet 5 --- install-stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-stack.sh b/install-stack.sh index be94a07..5fbf955 100755 --- a/install-stack.sh +++ b/install-stack.sh @@ -2062,7 +2062,7 @@ ${build_out}" msg_info "Seeding plant into auth DB" pct exec 100 -- docker exec hotel-manage-postgres psql -U postgres -d auth_db -c " INSERT INTO apps (slug, name, description, base_path, icon, theme_color, category, internal_host, internal_port) - VALUES ('plant', 'Plant Room', 'Plant-room equipment monitoring and alerting — boilers, water softener, calorifiers and pumps via MQTT telemetry', '/plant', 'Gauge', '#0e7490', 'Operations', '10.10.10.123', 3080) + VALUES ('plant', 'Plant Room', 'Plant-room equipment monitoring and alerting — boilers, water softener, calorifiers and pumps via MQTT telemetry', '/plant', 'Gauge', '#0e7490', 'Hotel', '10.10.10.123', 3080) ON CONFLICT (slug) DO UPDATE SET name=EXCLUDED.name, description=EXCLUDED.description, base_path=EXCLUDED.base_path, icon=EXCLUDED.icon, theme_color=EXCLUDED.theme_color, category=EXCLUDED.category,