74 lines
2.1 KiB
Markdown
74 lines
2.1 KiB
Markdown
# Vibe Kanban Setup Summary
|
|
|
|
## ✅ Setup Complete!
|
|
|
|
Vibe Kanban is configured at the **Projects level** to manage multiple projects (managing-apps, kaigen-web, gmx-interface, etc.).
|
|
|
|
## File Locations
|
|
|
|
- **Config**: `/Users/oda/Desktop/Projects/.vibe-kanban/config.json`
|
|
- **Package.json**: `/Users/oda/Desktop/Projects/package.json`
|
|
- **Run from**: `/Users/oda/Desktop/Projects`
|
|
|
|
## Quick Start
|
|
|
|
### Start Vibe Kanban (from Projects folder)
|
|
|
|
```bash
|
|
cd /Users/oda/Desktop/Projects
|
|
npm run vibe-kanban
|
|
```
|
|
|
|
This will:
|
|
- Auto-discover all projects in `/Users/oda/Desktop/Projects`
|
|
- Show managing-apps, kaigen-web, gmx-interface, etc.
|
|
- Allow you to manage tasks across all projects
|
|
|
|
### Start dev-manager-mcp (in separate terminal)
|
|
|
|
```bash
|
|
cd /Users/oda/Desktop/Projects
|
|
npm run dev-manager:start
|
|
```
|
|
|
|
## Benefits of Projects-Level Setup
|
|
|
|
✅ **Access all projects** from one Vibe Kanban instance
|
|
✅ **Centralized configuration** for MCP servers
|
|
✅ **Cross-project task management**
|
|
✅ **Unified QA workflow** across projects
|
|
✅ **Auto-discovery** of all git projects
|
|
✅ **Project-specific dev environments** - Each project can have its own dev environment setup
|
|
|
|
## Project-Specific Scripts
|
|
|
|
For managing-apps specific tasks, scripts are in the project:
|
|
|
|
```bash
|
|
cd /Users/oda/Desktop/Projects/managing-apps
|
|
npm run dev-env:start # Start dev environment
|
|
npm run dev-env:stop # Stop dev environment
|
|
```
|
|
|
|
## Configuration
|
|
|
|
The Projects-level config references project-specific scripts:
|
|
|
|
```json
|
|
{
|
|
"projectRoot": "/Users/oda/Desktop/Projects",
|
|
"devEnvScript": "managing-apps/scripts/start-task-docker.sh"
|
|
}
|
|
```
|
|
|
|
When Vibe Kanban starts a dev environment for a managing-apps task, it uses the script path relative to the Projects folder.
|
|
|
|
For other projects, you can configure project-specific dev environment scripts in Vibe Kanban's project settings.
|
|
|
|
## Next Steps
|
|
|
|
1. ✅ Vibe Kanban config created at Projects level
|
|
2. ✅ Package.json created with convenience scripts
|
|
3. ✅ Auto-discovery enabled for all projects
|
|
4. 🚀 **Start Vibe Kanban**: `cd /Users/oda/Desktop/Projects && npm run vibe-kanban`
|