Mission Control · Command Deck
Planetary Supply Desk
Dispatch supplies to an off-world base. Each base gets its own wildcard mission route: pick one, submit a supply request, and watch a durable workflow run with a live mission log on the side.
One request, four platform primitives
The route is wildcard DNS. The app behavior is ordinary code running on Tako.
- Durable workflows01
One supply request fans out into five resumable steps. If the server restarts mid-launch, the workflow resumes where it stopped.
order-shipment.ts - Live channels02
Each workflow step publishes to a channel, so connected clients see progress without polling.
mission-log.ts - Image service03
Server code signs AVIF image URLs. Tako resizes, caches, and serves them from /_tako/image.
index.tsx - Scheduled cleanup04
A daily workflow prunes old demo records, keeping the public app tidy without a separate cron service.
cleanup.ts