2. Deploy Admin App

Purpose: Deploy the admin dashboard (admin.eko.day) to Vercel production after full pre-flight checks.

Prerequisites:

  • All CI checks pass (bun run ci)
  • Changes merged to the deployment branch
  • Vercel CLI configured and authenticated

Cost / Duration: $0 locally | deployment costs per Vercel plan | 5-10 min

Prompt

Deploy the admin app with full pre-flight checks.

Step 1 — Verify CI passes:

```bash
bun run ci
```

Step 2 — Build locally:

```bash
bun run build
```

Step 3 — Deploy to preview:

```bash
vercel --cwd apps/admin
```

Verify the preview deployment looks correct.

Step 4 — Promote to production (confirm before running):

```bash
vercel --cwd apps/admin --prod
```

Do NOT deploy if any pre-flight step fails. Fix the issue first,
then restart from Step 1.

Verify: Open https://admin.eko.day and confirm the dashboard loads
with current data (metrics, queue depths, user counts).

Verification

  • bun run ci passes cleanly
  • Build completes without errors
  • Preview deployment is functional
  • Production deployment loads at admin.eko.day
  • Dashboard shows metrics, queue depths, and user counts
  • Category taxonomy visible (33 roots, 1,104 total categories)
  • No 500 errors or stale data

Back to index