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.

https://.demo.tako.sh

One request, four platform primitives

The route is wildcard DNS. The app behavior is ordinary code running on Tako.

  1. Durable workflows
    01

    One supply request fans out into five resumable steps. If the server restarts mid-launch, the workflow resumes where it stopped.

    order-shipment.ts
  2. Live channels
    02

    Each workflow step publishes to a channel, so connected clients see progress without polling.

    mission-log.ts
  3. Image service
    03

    Server code signs AVIF image URLs. Tako resizes, caches, and serves them from /_tako/image.

    index.tsx
  4. Scheduled cleanup
    04

    A daily workflow prunes old demo records, keeping the public app tidy without a separate cron service.

    cleanup.ts

Planet bases