Guides

WP-CLI Commands

Beginner~5 min

Use the Meteorack CLI to manage modules, run migrations, check health, and debug issues from your terminal.

Module Management

The meteorack CLI namespace gives you full control over the module lifecycle. List, enable, disable, and inspect modules without touching the admin UI.

# List all modules
wp meteorack modules list

# Enable / disable
wp meteorack modules enable my-module
wp meteorack modules disable my-module

# Module info
wp meteorack modules info my-module

# Check health across all modules
wp meteorack modules health

Debugging

Use the debug commands to inspect the container, trace service resolution, and view boot logs in real time.

# View boot log
wp meteorack modules log my-module --last=10

# Inspect container bindings
wp meteorack container dump

# Trace service resolution
wp meteorack container resolve SettingsInterface --verbose

# Clear module cache
wp meteorack cache flush my-module