← Về thư mục
📄 / / var / lib / containerd / io.containerd.snapshotter.v1.overlayfs / snapshots / 271 / fs / skills / openmaic / references / startup-modes.md

Startup Modes

Goal

Help the user choose how OpenMAIC should run before you start anything.

Options

1. Development Mode

Recommended for first-time setup and debugging.

pnpm dev

Tradeoff:

2. Production-Like Local Mode

Recommended when the user wants behavior closer to a deployed server.

pnpm build && pnpm start

Tradeoff:

3. Docker Compose

Use only when the user explicitly wants containerized startup or wants to avoid local Node setup details.

docker compose up --build

Tradeoff:

Recommendation Order

  1. pnpm dev
  2. pnpm build && pnpm start
  3. docker compose up --build

Health Check

After startup, verify:

curl -fsS http://localhost:3000/api/health

If the skill config provides a custom url, use that instead.

Confirmation Requirements