CLI Reference

runnem list

List all services and their status in your project.

Usage

runnem list
# or
runnem ls

Description

The list command (or its alias ls) shows the status of all services in your project. It displays:

  • Which services are running
  • Which services are stopped
  • URLs for running services
  • Project isolation status

Examples

# List all services
runnem list

# Using the alias
runnem ls

Output Format

The command shows a formatted list of services:

πŸ“‹ Services Status:

 - api: 🟒 Running
   πŸ“Ž http://localhost:3000

 - frontend: 🟒 Running
   πŸ“Ž http://localhost:3001

 - database: ⚫️ Stopped

Status Indicators

  • 🟒 Running - Service is active and responding
  • ⚫️ Stopped - Service is not running
  • πŸ“Ž URL - Shows the configured URL for running services

Project Isolation

The command also checks for services from other projects and will warn you if any are found:

⚠️ Found running services from other projects:

 - api (from project 'other-project')
 - frontend (from project 'other-project')

You must stop all services from other projects before using runnem here.
Run 'runnem down' to stop all services.

Best Practices

  1. Check service status before starting/stopping services
  2. Use URLs to verify service health
  3. Stop services from other projects before starting new ones
  4. Monitor service status during development
Previous
runnem down