Developer Documentation

Warning: This version of Altis is no longer supported

Running WP CLI Commands

The Local Server allows you to run WP CLI commands via the composer local-server cli -- command. Prepend all your commends with composer local-server cli -- and drop the proceeding wp. For example, to list all posts:

composer local-server cli -- post list

To install a new language file and activate it:

composer local-server cli -- language core install fr_FR

CLI commands via Local Server also support piping, for example import a database SQL file:

composer local-server cli -- db import - < ~/Downloads/database.sql