Files
managing-apps/docs/VIBE_KANBAN_QUICK_START.md
2025-12-31 01:31:54 +07:00

2.0 KiB

Vibe Kanban Quick Start

Quick reference for using Vibe Kanban with managing-apps.

Installation

No installation needed! Vibe Kanban runs via npx.

Starting Vibe Kanban

From Projects folder (recommended - manages all projects):

cd /Users/oda/Desktop/Projects
npm run vibe-kanban

Or directly:

cd /Users/oda/Desktop/Projects
npx vibe-kanban

Alternative: From managing-apps folder (project-specific):

cd /Users/oda/Desktop/Projects/managing-apps
npx vibe-kanban

First Time Setup

  1. Start Vibe Kanban:

    npm run vibe-kanban
    
  2. Complete setup dialogs:

    • Configure your coding agent (Claude, Codex, etc.)
    • Set editor preferences
    • Configure GitHub integration (optional)
  3. Access the UI:

    • Vibe Kanban will print a URL in the terminal
    • Usually: http://localhost:3000 (or random port)
    • Automatically opens in your default browser

Configuration

Project-specific configuration is in .vibe-kanban/config.json:

  • MCP Servers: dev-manager-mcp integration
  • QA Automation: Auto-start dev environments
  • Task Statuses: Configure when to auto-start environments

Using with Dev Environments

When a task moves to "Ready for QA":

  1. Vibe Kanban automatically calls scripts/start-task-docker.sh
  2. Creates isolated Docker environment
  3. Copies database from main repo
  4. Provides test URLs
  5. When done, automatically stops the environment

Commands

# Start Vibe Kanban
npm run vibe-kanban

# Start dev-manager-mcp daemon (in separate terminal)
npm run dev-manager:start

# Check dev-manager status
npm run dev-manager:status

# Start dev environment manually
npm run dev-env:start

# Stop dev environment
npm run dev-env:stop TASK-123

Fixed Port

To use a fixed port:

PORT=8080 npm run vibe-kanban

Resources