Resources
Example Docker Compose
Below is a placeholder for a basic MKTI Lite Edition deployment. Full examples will be added as the documentation expands.
version: "3.9"
services:
mkti-example:
image: perswork/mkti-example:latest
ports:
- "8080:8080"
restart: unless-stopped
Example Home Assistant Automation
This section will include example automations using MKTI microservices and Home Assistant webhooks.
automation:
- alias: "MKTI Example Automation"
trigger:
- platform: event
event_type: mkti_event
action:
- service: notify.mobile_app
data:
message: "MKTI processed your automation event."
Example JSON Payload
MKTI microservices use JSON input and output. Example payloads will be added here.
{
"value": 42,
"status": "active",
"timestamp": "2026-01-01T12:00:00Z"
}
Reference Materials
Additional reference materials, diagrams, and templates will be added here as the MKTI ecosystem grows.