#!/usr/bin/env python """Seed the TinyHouse: the flows that replace the Node-RED installation. make -C app seed-tinyhouse See `scripts/tinyhouse/` for what it builds, and `house.json` at the workspace root for this installation's own addresses and DMX wiring. """ import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent)) from tinyhouse.__main__ import main # noqa: E402 if __name__ == "__main__": raise SystemExit(main(sys.argv[1:]))