# Kiki's Dispatch Service A Webhook & MQTT dispatch server. ## Config For example, ```json { "rules": { "update Catbus UI": { "triggers": [ { "url": "/gitolite-repo-updated", "formValues": { "repo": "catbus-web-ui" } } ], "actions": [ { "url": "https://build.eth.moe/deploy", "formValues": { "project": "catbus-web-ui" } } ] }, "turn lights on": { "triggers": [ { "url": "/living-room/lights-on", "formValues": { "power": "on" } } ], "actions": [ { "mqtt": "tcp://catbus.eth.moe/home/living-room/sofa-light/power", "value": "on" }, { "mqtt": "tcp://catbus.eth.moe/home/living-room/front-light/power", "value": "on" } ] } } } ```