kumiko dev
kumiko devBrings up Postgres, Redis, and Meilisearch via docker compose up -d,
then waits for Postgres to accept connections.
Idempotent, if the services are already running, it’s a no-op.
Output
Section titled “Output”Starting PostgreSQL and Redis... PostgreSQL localhost:15432 Redis localhost:16379 Meilisearch localhost:17700
Up and running. Happy coding.The ports are configurable via env vars:
| Variable | Default |
|---|---|
KUMIKO_PG_PORT | 15432 |
KUMIKO_REDIS_PORT | 16379 |
KUMIKO_MEILI_PORT | 17700 |
When to use
Section titled “When to use”Run once at the start of every development session. Pair with
kumiko stop when you’re done (data stays in the
volumes, services restart cleanly next time).
When NOT to use
Section titled “When NOT to use”Inside CI. CI uses GitHub-Actions service containers or compose directly; the wait loop here is for local-dev convenience.
See also
Section titled “See also”kumiko doctor, verify everything came up healthykumiko stop, graceful shutdownkumiko reset, destructive restart