Commands
dev
Start dev servers interactively.
groo dev
The dev command discovers all services in your monorepo with dev scripts and presents an interactive selection menu. Selected services are started in parallel with color-coded output.
Features:
- Automatically discovers services with
devscripts inpackage.json - Shows running status based on port detection
- Auto-selects services that aren't currently running
- Color-coded output for each service
logs
View logs for running services.
groo logs [-f] [-n <lines>]
| Option | Description |
|---|---|
-f, --follow | Follow log output (like tail -f) |
-n <lines> | Number of lines to show (default: 10) |
Shows logs for services running in the current project. Supports selecting specific services when multiple are running.
status
Show status of services in the current project.
groo status
Displays which services are currently running in the project, including their PIDs and ports.
restart
Restart running services.
groo restart
stop
Stop all services in the current project.
groo stop
list
List all projects with running services.
groo list
open
Open a service URL in your browser.
groo open <service>