The ce-cli, or Client Extension Command Line Interface, is a tool to help set up local development projects for Liferay Client extensions.
blade gw deploy
to deploy your appsCurrently, you'll need to download a binary and add it to your path manually. Eventually I'll add it to npm.
Get the binary here. Add it to the PATH in your machine or just copy it into your workspace folder if you want it quick and dirty.
As the project is built in Rust, you can also install it using cargo
:
bash
cargo install ce-cli
This CLI expects its workspace to be hosted in a Liferay Workspace. To setup a Liferay Workspace, first download the Blade CLI.
After that, run blade init
to set up your Liferay workspace.
Next run blade server init
to download a Liferay bundle.
Next, anywhere in the workspace folder, create a folder to host your Client Extension Workspace and cd into it. For example:
bash
mkdir my-ce-workspace && cd my-ce-workspace
Next, initialize the workspace:
bash
ce-cli init
Next, add your first custom element remote app:
bash
ce-cli add custom-element "My New App"
Now your app is ready to develop.
To deploy to your local Liferay server and see what you've got, just use Blade: blade gw deploy
.