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
- Check service status before starting/stopping services
- Use URLs to verify service health
- Stop services from other projects before starting new ones
- Monitor service status during development