Skip to content
/ cli Public

A command-line interface to interact with the Coveo platform and quickly create Coveo Headless-powered search pages with Angular, React or Vue.js.

License

Notifications You must be signed in to change notification settings

coveo/cli

Folders and files

NameName
Last commit message
Last commit date
Jan 7, 2022
Jul 6, 2021
Oct 28, 2021
May 18, 2021
Jan 12, 2022
Dec 3, 2021
Apr 27, 2021
Dec 9, 2021
Jan 20, 2021
Mar 31, 2021
Nov 25, 2021
Apr 1, 2021
Oct 8, 2021
Feb 12, 2021
Jan 12, 2022
Feb 10, 2021
Dec 1, 2021
Jul 26, 2021
Aug 30, 2021
Jan 6, 2022
Jan 12, 2022
Jan 12, 2022
Jan 12, 2022
Jan 7, 2022
Jan 25, 2021
Apr 14, 2021

Repository files navigation

Coveo CLI

Build

What is it?

The Coveo CLI is a powerful command-line interface (CLI) that interacts with the Coveo platform to facilitate development and build automation. Key features include the following:

Installation

Option 1: Install via an Executable

Download and run the executable for your operating system to install the latest available version of the CLI.

Afterward, you can run coveo update at any time to update your CLI installation to the latest version.

Option 2: Install via NPM

You can alternatively install the CLI globally via npm:

npm install -g @coveo/cli

Afterward, you can run npm update -g @coveo/cli at any time to update your npm-based CLI installation to the latest version.

You can also run the CLI via npx:

npx @coveo/cli

Validating your installation

To validate your CLI installation, use the coveo --version command:

$ coveo --version
@coveo/cli/1.19.0 darwin-x64 node-v16.10.0

Getting started

After you install the CLI, you'll typically want to login to your Coveo Organization. You can check out all the available commands here.

The project is still under heavy development and more features are coming, stay tuned!

Local Setup to Contribute

To install all dependencies and link local packages, run:

npm run setup

To run the local version of the CLI

./packages/cli/bin/run

To build all projects for production, run:

npm run build

To run unit tests

npm run test